nixpkgs/pkgs/tools/networking/netboot/default.nix
Sandro Jäckel 33a395f195
yacc: deprecate alias
and add a new line after the alphabetically sorting to please my inner monk
2021-04-04 03:18:58 +02:00

21 lines
495 B
Nix

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