nixpkgs/pkgs/tools/networking/netboot/default.nix
Mateusz Kowalczyk 007f80c1d0 Turn more licenses into lib.licenses style
Should eval cleanly, as far as -A tarball tells me.

Relevant: issue #2999, issue #739
2014-11-06 00:48:16 +00:00

18 lines
465 B
Nix

{ stdenv, fetchurl, yacc, lzo, db4 }:
stdenv.mkDerivation rec {
name = "netboot-0.10.2";
src = fetchurl {
url = "mirror://sourceforge/netboot/${name}.tar.gz";
sha256 = "09w09bvwgb0xzn8hjz5rhi3aibysdadbg693ahn8rylnqfq4hwg0";
};
buildInputs = [ yacc lzo db4 ];
meta = with stdenv.lib; {
description = "Mini PXE server";
maintainers = [ maintainers.raskin ];
platforms = ["x86_64-linux"];
license = stdenv.lib.licenses.free;
};
}