My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/networking/shncpd/default.nix

27 lines
670 B

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation {
pname = "shncpd";
version = "2016-06-22";
src = fetchFromGitHub {
owner = "jech";
repo = "shncpd";
rev = "62ef688db7a6535ce11e66c8c93ab64a1bb09484";
sha256 = "1sj7a77isc2jmh7gw2naw9l9366kjx6jb909h7spj7daxdwvji8f";
};
hardeningEnable = [ "pie" ];
preConfigure = ''
makeFlags=( "PREFIX=$out" )
'';
meta = with lib; {
description = "Simple, stupid and slow HNCP daemon";
homepage = "https://www.irif.univ-paris-diderot.fr/~jch/software/homenet/shncpd.html";
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.fpletz ];
};
}