about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2004-06-21 17:00:00 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2004-06-21 17:00:00 +0000
commit3f9a589d5370ce9fd536e0f48f90300a47dddc5c (patch)
tree50c6f6589753a6d61e0199ca1f7633537c1f0f77
parent5503e2fc33e390cfa6f40d5353ee32ea3758c2d2 (diff)
* More updates.
svn path=/nixpkgs/trunk/; revision=1068
-rw-r--r--pkgs/applications/graphics/gqview/default.nix6
-rw-r--r--pkgs/applications/version-management/subversion/default.nix6
-rw-r--r--pkgs/development/libraries/chmlib/default.nix6
3 files changed, 9 insertions, 9 deletions
diff --git a/pkgs/applications/graphics/gqview/default.nix b/pkgs/applications/graphics/gqview/default.nix
index 57dcb70ec9700..0af6244d80074 100644
--- a/pkgs/applications/graphics/gqview/default.nix
+++ b/pkgs/applications/graphics/gqview/default.nix
@@ -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];
diff --git a/pkgs/applications/version-management/subversion/default.nix b/pkgs/applications/version-management/subversion/default.nix
index 53d9f62381942..ebe31f61590dc 100644
--- a/pkgs/applications/version-management/subversion/default.nix
+++ b/pkgs/applications/version-management/subversion/default.nix
@@ -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;
diff --git a/pkgs/development/libraries/chmlib/default.nix b/pkgs/development/libraries/chmlib/default.nix
index 2b6814745eb7f..21ea6a49e3fe5 100644
--- a/pkgs/development/libraries/chmlib/default.nix
+++ b/pkgs/development/libraries/chmlib/default.nix
@@ -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];
 }