mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
c46ffb05ff
Previous domain had expired
25 lines
604 B
Nix
25 lines
604 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "net-tools-1.60_p20120127084908";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gentoo/distfiles/${name}.tar.xz";
|
|
sha256 = "408a51964aa142a4f45c4cffede2478abbd5630a7c7346ba0d3611059a2a3c94";
|
|
};
|
|
|
|
preBuild =
|
|
''
|
|
cp ${./config.h} config.h
|
|
'';
|
|
|
|
makeFlags = "BASEDIR=$(out) mandir=/share/man";
|
|
|
|
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;
|
|
};
|
|
}
|