mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
28 lines
672 B
Nix
28 lines
672 B
Nix
{ 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 stdenv.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 ];
|
|
};
|
|
}
|