* Added xchm, a Windows help viewer for X.

svn path=/nixpkgs/trunk/; revision=923
This commit is contained in:
Eelco Dolstra
2004-04-06 17:47:34 +00:00
parent 381c8b926a
commit 32e4b9928d
6 changed files with 50 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
. $stdenv/setup
unpackCmd="tar xvfj $src"
makeFlags="CC=gcc LD=gcc INSTALLPREFIX=$out"
preInstall() {
mkdir $out
mkdir $out/lib
mkdir $out/include
}
preInstall=preInstall
installFlags=$makeFlags
genericBuild

View File

@@ -0,0 +1,11 @@
{stdenv, fetchurl, libtool}:
stdenv.mkDerivation {
name = "chmlib-0.31";
builder = ./builder.sh;
src = fetchurl {
url = http://66.93.236.84/~jedwin/projects/chmlib/chmlib-0.31.tbz;
md5 = "c6c9e1658f43715456e00a4893d496ed";
};
buildInputs = [libtool];
}