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.
This commit is contained in:
Franz Pletz 2017-06-07 09:32:11 +02:00
parent 1532d5632f
commit 9a219a7ec0
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -1,11 +1,11 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "net-tools-1.60_p20120127084908";
name = "net-tools-1.60_p20161110235919";
src = fetchurl {
url = "mirror://gentoo/distfiles/${name}.tar.xz";
sha256 = "408a51964aa142a4f45c4cffede2478abbd5630a7c7346ba0d3611059a2a3c94";
sha256 = "1kbgwkys45kb5wqhchi1kf0sfw93c1cl0hgyw7yhacxzdfxjmdfr";
};
preBuild =
@ -13,7 +13,15 @@ stdenv.mkDerivation rec {
cp ${./config.h} config.h
'';
makeFlags = "BASEDIR=$(out) mandir=/share/man";
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/;