shncpd: init at 2016-06-22

This commit is contained in:
Franz Pletz 2016-07-17 04:23:45 +02:00
parent 8a6fce5431
commit eacabb9993
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "shncpd-${version}";
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 ];
};
}

View File

@ -6601,6 +6601,8 @@ in
shellcheck = self.haskellPackages.ShellCheck;
shncpd = callPackage ../tools/networking/shncpd { };
sigrok-cli = callPackage ../development/tools/sigrok-cli { };
simpleTpmPk11 = callPackage ../tools/security/simple-tpm-pk11 { };