* 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
This commit is contained in:
@@ -1,12 +1,26 @@
|
||||
{stdenv, fetchurl}:
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "net-tools-1.60";
|
||||
builder = ./builder.sh;
|
||||
|
||||
src = fetchurl {
|
||||
url = http://www.tazenda.demon.co.uk/phil/net-tools/net-tools-1.60.tar.bz2;
|
||||
md5 = "888774accab40217dde927e21979c165";
|
||||
};
|
||||
config = ./config.h;
|
||||
patch = ./net-tools-labels.patch;
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user