mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
36 lines
842 B
Nix
36 lines
842 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "net-tools";
|
|
version = "1.60_p20170221182432";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gentoo/distfiles/${pname}-${version}.tar.xz";
|
|
sha256 = "08r4r2a24g5bm8jwgfa998gs1fld7fgbdf7pilrpsw1m974xn04a";
|
|
};
|
|
|
|
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"
|
|
];
|
|
|
|
meta = {
|
|
homepage = http://net-tools.sourceforge.net/;
|
|
description = "A set of tools for controlling the network subsystem in Linux";
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|