nixpkgs/pkgs/os-specific/linux/net-tools/default.nix
Eelco Dolstra 176c0e32b1 * net-tools: install the manpages in $out/share/man/manN instead of
$out/share/manN.  Cleaned up the expression at the same time.

svn path=/nixpkgs/trunk/; revision=17509
2009-09-29 15:33:03 +00:00

27 lines
619 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "net-tools-1.60";
src = fetchurl {
url = http://www.tazenda.demon.co.uk/phil/net-tools/net-tools-1.60.tar.bz2;
md5 = "888774accab40217dde927e21979c165";
};
patches = [ ./net-tools-labels.patch ];
preBuild =
''
cp ${./config.h} config.h
'';
makeFlags = "BASEDIR=$(out) mandir=/share/man";
meta = {
homepage = http://www.tazenda.demon.co.uk/phil/net-tools/;
description = "A set of tools for controlling the network subsystem in Linux";
license = "GPLv2+";
platforms = [ stdenv.lib.platforms.linux ];
};
}