Added the package man-pages.

svn path=/nixpkgs/trunk/; revision=6071
This commit is contained in:
Martin Bravenboer
2006-08-08 00:09:27 +00:00
parent 6742ffca0f
commit a4b37a367a
3 changed files with 28 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
source $stdenv/setup
tar zxf $src
cd man-pages-*
sed -e "s#^MANDIR=.*#MANDIR=$out/share/man#" Makefile > Makefile.tmp
mv Makefile.tmp Makefile
make install

View File

@@ -0,0 +1,10 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "man-pages-2.39";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.win.tue.nl/pub/linux-local/manpages/man-pages-2.39.tar.gz;
md5 = "770f4e5b1a1298ed054ceae7cdbbbba4";
};
}