3
0
Fork 0
forked from mirrors/nixpkgs

netboot: simplify, build only on 64bit

This commit is contained in:
Domen Kožar 2014-08-26 12:11:22 +02:00
parent f84c121e5e
commit 7573763e89

View file

@ -1,47 +1,18 @@
x@{builderDefsPackage
, fetchurl, yacc, bison, ...}:
builderDefsPackage
(a :
let
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
[];
{ stdenv, fetchurl, yacc, lzo, db4 }:
buildInputs = map (n: builtins.getAttr n x)
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
sourceInfo = rec {
version="0.10.2";
baseName="netboot";
name="${baseName}-${version}";
url="mirror://sourceforge/netboot/${name}.tar.gz";
hash="09w09bvwgb0xzn8hjz5rhi3aibysdadbg693ahn8rylnqfq4hwg0";
};
in
rec {
src = a.fetchurl {
url = sourceInfo.url;
sha256 = sourceInfo.hash;
stdenv.mkDerivation rec {
name = "netboot-0.10.2";
src = fetchurl {
url = "mirror://sourceforge/netboot/${name}.tar.gz";
sha256 = "09w09bvwgb0xzn8hjz5rhi3aibysdadbg693ahn8rylnqfq4hwg0";
};
buildInputs = [ yacc lzo db4 ];
inherit (sourceInfo) name version;
inherit buildInputs;
/* doConfigure should be removed if not needed */
phaseNames = ["doUnpack" "doConfigure" "doMakeInstall"];
meta = {
meta = with stdenv.lib; {
description = "Mini PXE server";
maintainers = with a.lib.maintainers;
[
raskin
];
platforms = with a.lib.platforms;
linux;
maintainers = [ maintainers.raskin ];
platforms = ["x86_64-linux"];
license = "free-noncopyleft";
};
passthru = {
updateInfo = {
downloadPage = "https://github.com/ITikhonov/netboot";
};
};
}) x
}