about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/networking/netboot/default.nix
blob: 30dc544fe23bd9af609f7bd1a8831bc04f1751cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ 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" "aarch64-linux" ];
    license = lib.licenses.free;
  };
}