My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/networking/netboot/default.nix

26 lines
649 B

{ lib, stdenv, fetchurl, bison, lzo, db4 }:
stdenv.mkDerivation rec {
pname = "netboot";
version = "0.10.2";
src = fetchurl {
url = "mirror://sourceforge/netboot/netboot-${version}.tar.gz";
sha256 = "09w09bvwgb0xzn8hjz5rhi3aibysdadbg693ahn8rylnqfq4hwg0";
};
buildInputs = [ bison lzo db4 ];
hardeningDisable = [ "format" ];
# Disable parallel build, errors:
# link: `parseopt.lo' is not a valid libtool object
enableParallelBuilding = false;
meta = with lib; {
description = "Mini PXE server";
maintainers = [ maintainers.raskin ];
platforms = ["x86_64-linux"];
license = lib.licenses.free;
};
}