about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorndowens <ndowens04@gmail.com>2017-03-25 15:10:32 -0500
committerGraham Christensen <graham@grahamc.com>2017-03-26 08:20:27 -0400
commit6c17ad677c4970c87e8562574ea7e6fbf12b0813 (patch)
tree8a68285894827db6ea586cf84e7d46cc9e4c0671 /pkgs/development
parent65029beb38d358e45f2f322c46a9e25c2aacfd3d (diff)
downloadnixlib-6c17ad677c4970c87e8562574ea7e6fbf12b0813.tar
nixlib-6c17ad677c4970c87e8562574ea7e6fbf12b0813.tar.gz
nixlib-6c17ad677c4970c87e8562574ea7e6fbf12b0813.tar.bz2
nixlib-6c17ad677c4970c87e8562574ea7e6fbf12b0813.tar.lz
nixlib-6c17ad677c4970c87e8562574ea7e6fbf12b0813.tar.xz
nixlib-6c17ad677c4970c87e8562574ea7e6fbf12b0813.tar.zst
nixlib-6c17ad677c4970c87e8562574ea7e6fbf12b0813.zip
jasper: 2.0.10 -> 2.0.12
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/jasper/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/jasper/default.nix b/pkgs/development/libraries/jasper/default.nix
index 36b2c469eaf4..34e7e4a761f4 100644
--- a/pkgs/development/libraries/jasper/default.nix
+++ b/pkgs/development/libraries/jasper/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchurl, fetchpatch, libjpeg, cmake }:
 
 stdenv.mkDerivation rec {
-  name = "jasper-2.0.10";
+  name = "jasper-2.0.12";
 
   src = fetchurl {
     # You can find this code on Github at https://github.com/mdadams/jasper
     # however note at https://www.ece.uvic.ca/~frodo/jasper/#download
     # not all tagged releases are for distribution.
     url = "http://www.ece.uvic.ca/~mdadams/jasper/software/${name}.tar.gz";
-    sha256 = "1s022mfxyw8jw60fgyj60lbm9h6bc4nk2751b0in8qsjwcl59n2l";
+    sha256 = "1njdbxv7d4anzrd476wjww2qsi96dd8vfnp4hri0srrqxpszl92v";
   };
 
   # newer reconf to recognize a multiout flag
@@ -25,9 +25,9 @@ stdenv.mkDerivation rec {
     moveToOutput bin "$bin"
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = https://www.ece.uvic.ca/~frodo/jasper/;
     description = "JPEG2000 Library";
-    platforms = stdenv.lib.platforms.unix;
+    platforms = platforms.unix;
   };
 }