mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
007f80c1d0
Should eval cleanly, as far as -A tarball tells me. Relevant: issue #2999, issue #739
18 lines
465 B
Nix
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;
|
|
};
|
|
} |