biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / networking / shncpd / default.nix
blobed724c24cf7907e4325a8f0c6ccc5a4da8be295d
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation {
4   pname = "shncpd";
5   version = "2016-06-22";
7   src = fetchFromGitHub {
8     owner = "jech";
9     repo = "shncpd";
10     rev = "62ef688db7a6535ce11e66c8c93ab64a1bb09484";
11     sha256 = "1sj7a77isc2jmh7gw2naw9l9366kjx6jb909h7spj7daxdwvji8f";
12   };
14   hardeningEnable = [ "pie" ];
16   preConfigure = ''
17     makeFlags=( "PREFIX=$out" )
18   '';
20   meta = with lib; {
21     description = "Simple, stupid and slow HNCP daemon";
22     homepage = "https://www.irif.univ-paris-diderot.fr/~jch/software/homenet/shncpd.html";
23     license = licenses.mit;
24     platforms = platforms.linux;
25     maintainers = [ maintainers.fpletz ];
26     mainProgram = "shncpd";
27   };