summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-05-22 21:18:25 +0000
committerLudovic Courtès <ludo@gnu.org>2012-05-22 21:18:25 +0000
commitb4cecdea105f8199312435a11b2477f2221af66d (patch)
treef3d8150e4f4b63933aaa5a9002e89f06e3adab35 /pkgs
parent801c82da559304a0c8028d59bec30d504310bcae (diff)
downloadnixpkgs-b4cecdea105f8199312435a11b2477f2221af66d.tar
nixpkgs-b4cecdea105f8199312435a11b2477f2221af66d.tar.gz
nixpkgs-b4cecdea105f8199312435a11b2477f2221af66d.tar.bz2
nixpkgs-b4cecdea105f8199312435a11b2477f2221af66d.tar.lz
nixpkgs-b4cecdea105f8199312435a11b2477f2221af66d.tar.xz
nixpkgs-b4cecdea105f8199312435a11b2477f2221af66d.tar.zst
nixpkgs-b4cecdea105f8199312435a11b2477f2221af66d.zip
Ploticus 2.41.
svn path=/nixpkgs/trunk/; revision=34216
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/graphics/ploticus/default.nix6
-rw-r--r--pkgs/top-level/all-packages.nix4
2 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/tools/graphics/ploticus/default.nix b/pkgs/tools/graphics/ploticus/default.nix
index f173f2f1e14..857a86d57af 100644
--- a/pkgs/tools/graphics/ploticus/default.nix
+++ b/pkgs/tools/graphics/ploticus/default.nix
@@ -1,12 +1,12 @@
 {stdenv, fetchurl, zlib, libX11, libpng}:
 
 stdenv.mkDerivation {
-  name = "ploticus-2.40";
+  name = "ploticus-2.41";
 
   builder = ./builder.sh;
   src = fetchurl {
-    url = mirror://sourceforge/ploticus/pl240src.tar.gz;
-    sha256 = "1gwppsmfxajrpidjrplkhvq2yy35r9hmigpwjmjqv4r7dj7cnrw8";
+    url = mirror://sourceforge/ploticus/ploticus/2.41/pl241src.tar.gz;
+    sha256 = "ecccb6afcf0008d5b31da2e9e74c448564101eb7b9bbde758a3dca1f2dc8c580";
   };
 
   buildInputs = [zlib libX11 libpng];
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 25eeacd14a0..3e0b1aa3904 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -1246,7 +1246,9 @@ let
 
   plan9port = callPackage ../tools/system/plan9port { };
 
-  ploticus = callPackage ../tools/graphics/ploticus { };
+  ploticus = callPackage ../tools/graphics/ploticus {
+    libpng = libpng12;
+  };
 
   plotutils = callPackage ../tools/graphics/plotutils { };