* More updates.

svn path=/nixpkgs/trunk/; revision=1068
This commit is contained in:
Eelco Dolstra 2004-06-21 17:00:00 +00:00
parent 5503e2fc33
commit 3f9a589d53
3 changed files with 9 additions and 9 deletions

View file

@ -6,11 +6,11 @@ assert pkgconfig != null && gtk != null && libpng != null;
# !!! assert libpng == gtk.libpng;
stdenv.mkDerivation {
name = "gqview-1.4.1";
name = "gqview-1.4.3";
src = fetchurl {
url = http://heanet.dl.sourceforge.net/sourceforge/gqview/gqview-1.4.1.tar.gz;
md5 = "d963fbb878d78e8ebf78ea8c18caa72f";
url = http://heanet.dl.sourceforge.net/sourceforge/gqview/gqview-1.4.3.tar.gz;
md5 = "6a6a08309a91aab902304a3c6ed392eb";
};
buildInputs = [pkgconfig gtk libpng];

View file

@ -13,12 +13,12 @@ assert sslSupport -> openssl != null && (httpServer -> httpd.openssl == openssl)
assert swigBindings -> swig != null && swig.pythonSupport;
stdenv.mkDerivation {
name = "subversion-1.0.4";
name = "subversion-1.0.5";
builder = ./builder.sh;
src = fetchurl {
url = http://subversion.tigris.org/tarballs/subversion-1.0.4.tar.bz2;
md5 = "313bd03f353683de7561eadf477f7612";
url = http://subversion.tigris.org/tarballs/subversion-1.0.5.tar.bz2;
md5 = "8e8288fee061f5278ec201fc5e5e141c";
};
openssl = if sslSupport then openssl else null;

View file

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