summary refs log tree commit diff
path: root/pkgs/tools/networking/netboot/default.nix
blob: dbf393094c8ee08bdd990c2baa02047dc4c12a8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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 = "free-noncopyleft";
  };
}