* wxGTK 2.6.

* Also updated chmlib, xchm.

svn path=/nixpkgs/trunk/; revision=4109
This commit is contained in:
Eelco Dolstra
2005-10-19 15:15:37 +00:00
parent 154fbad053
commit 33eee5d50d
6 changed files with 52 additions and 10 deletions

View File

@@ -2,14 +2,19 @@
unpackCmd="tar xvfj $src"
makeFlags="CC=gcc LD=gcc INSTALLPREFIX=$out"
makeFlags="-f Makefile.simple CC=gcc LD=gcc INSTALLPREFIX=$out"
postConfigure=postConfigure
postConfigure() {
cd src
}
preInstall=preInstall
preInstall() {
mkdir $out
mkdir $out/lib
mkdir $out/include
}
preInstall=preInstall
installFlags=$makeFlags

View File

@@ -1,11 +1,11 @@
{stdenv, fetchurl, libtool}:
stdenv.mkDerivation {
name = "chmlib-0.33";
name = "chmlib-0.36";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/chmlib-0.33.tbz;
md5 = "8bc84e94f1cea65005e5cb0ab40e2e86";
url = http://66.93.236.84/%7Ejedwin/projects/chmlib/chmlib-0.36.tbz;
md5 = "8fa5e9a1af13084ca465d9ee09e1946e";
};
buildInputs = [libtool];
}