nixpkgs/pkgs/tools/networking/netboot/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
649 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, bison, lzo, db4 }:
2014-08-26 11:11:22 +01:00
stdenv.mkDerivation rec {
pname = "netboot";
version = "0.10.2";
2014-08-26 11:11:22 +01:00
src = fetchurl {
url = "mirror://sourceforge/netboot/netboot-${version}.tar.gz";
2014-08-26 11:11:22 +01:00
sha256 = "09w09bvwgb0xzn8hjz5rhi3aibysdadbg693ahn8rylnqfq4hwg0";
};
buildInputs = [ bison lzo db4 ];
hardeningDisable = [ "format" ];
2016-02-12 13:07:20 +00:00
2022-01-29 10:33:46 +00:00
# Disable parallel build, errors:
# link: `parseopt.lo' is not a valid libtool object
enableParallelBuilding = false;
meta = with lib; {
description = "Mini PXE server";
2014-08-26 11:11:22 +01:00
maintainers = [ maintainers.raskin ];
platforms = ["x86_64-linux"];
2021-01-15 09:19:50 +00:00
license = lib.licenses.free;
};
2016-02-12 13:07:20 +00:00
}