about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-10-29 14:19:39 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-10-29 14:19:39 +0000
commit843617bac98824c3fb7b11949dcc155635aecfd7 (patch)
tree81da729477576ad769c4e40db67324297f89d673
parentb90a6b4ba01f6621fbf7585f520a211ffbf91078 (diff)
* libpng 1.2.40.
svn path=/nixpkgs/branches/xorg-7.5/; revision=18026
-rw-r--r--pkgs/development/libraries/libpng/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libpng/default.nix b/pkgs/development/libraries/libpng/default.nix
index 256993b996800..87148e76059a9 100644
--- a/pkgs/development/libraries/libpng/default.nix
+++ b/pkgs/development/libraries/libpng/default.nix
@@ -3,11 +3,11 @@
 assert zlib != null;
 
 stdenv.mkDerivation rec {
-  name = "libpng-1.2.35";
+  name = "libpng-1.2.40";
   
   src = fetchurl {
-    url = mirror://sourceforge/libpng/libpng-1.2.35.tar.bz2;
-    md5 = "b8b8d09adf6bee2c5902c8e54c4f2e68";
+    url = "mirror://sourceforge/libpng/${name}.tar.gz";
+    md5 = "a2f6808735bf404967f81519a967fb2a";
   };
   
   propagatedBuildInputs = [zlib];
@@ -17,5 +17,6 @@ stdenv.mkDerivation rec {
   meta = {
     description = "The official reference implementation for the PNG file format";
     homepage = http://www.libpng.org/pub/png/libpng.html;
+    license = "free-non-copyleft"; # http://www.libpng.org/pub/png/src/libpng-LICENSE.txt
   };
 }