mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
shncpd: init at 2016-06-22
This commit is contained in:
parent
8a6fce5431
commit
eacabb9993
27
pkgs/tools/networking/shncpd/default.nix
Normal file
27
pkgs/tools/networking/shncpd/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user