uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
26
pkgs/tools/networking/netboot/default.nix
Normal file
26
pkgs/tools/networking/netboot/default.nix
Normal file
|
|
@ -0,0 +1,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"];
|
||||
license = lib.licenses.free;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue