nixpkgs/pkgs/os-specific/linux/net-tools/default.nix
Franz Pletz 9a219a7ec0
nettools: 1.60_p20120127084908 -> 1.60_p20161110235919
Some tools now need to be explcitely enabled. This version ships the same
executables as the previous one.
2017-07-10 09:36:04 +02:00

33 lines
740 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "net-tools-1.60_p20161110235919";
src = fetchurl {
url = "mirror://gentoo/distfiles/${name}.tar.xz";
sha256 = "1kbgwkys45kb5wqhchi1kf0sfw93c1cl0hgyw7yhacxzdfxjmdfr";
};
preBuild =
''
cp ${./config.h} config.h
'';
makeFlags = [
"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;
};
}