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
36
pkgs/os-specific/linux/net-tools/default.nix
Normal file
36
pkgs/os-specific/linux/net-tools/default.nix
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "net-tools";
|
||||
version = "2.10";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gentoo/distfiles/${pname}-${version}.tar.xz";
|
||||
sha256 = "sha256-smJDWlJB6Jv6UcPKvVEzdTlS96e3uT8y4Iy52W9YDWk=";
|
||||
};
|
||||
|
||||
preBuild =
|
||||
''
|
||||
cp ${./config.h} config.h
|
||||
'';
|
||||
|
||||
makeFlags = [
|
||||
"CC=${stdenv.cc.targetPrefix}cc"
|
||||
"AR=${stdenv.cc.targetPrefix}ar"
|
||||
"BASEDIR=$(out)"
|
||||
"mandir=/share/man"
|
||||
"HAVE_ARP_TOOLS=1"
|
||||
"HAVE_PLIP_TOOLS=1"
|
||||
"HAVE_SERIAL_TOOLS=1"
|
||||
"HAVE_HOSTNAME_TOOLS=1"
|
||||
"HAVE_HOSTNAME_SYMLINKS=1"
|
||||
"HAVE_MII=1"
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = "http://net-tools.sourceforge.net/";
|
||||
description = "A set of tools for controlling the network subsystem in Linux";
|
||||
license = lib.licenses.gpl2Plus;
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue