about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2020-04-10 09:02:21 +0200
committerVladimír Čunát <v@cunat.cz>2020-04-10 09:02:21 +0200
commitf2198c46b2902a9fe15b052544d87feea57046f7 (patch)
tree641bd3ae6ecf9791a6b8ed2859f7d7eda1105852 /pkgs/development/libraries
parent7b5b815c3b4b970edf7b25cc3a07a141336f8280 (diff)
parente24e8da3363c0824eeb74cbf64263b4b6ae6ef67 (diff)
downloadnixlib-f2198c46b2902a9fe15b052544d87feea57046f7.tar
nixlib-f2198c46b2902a9fe15b052544d87feea57046f7.tar.gz
nixlib-f2198c46b2902a9fe15b052544d87feea57046f7.tar.bz2
nixlib-f2198c46b2902a9fe15b052544d87feea57046f7.tar.lz
nixlib-f2198c46b2902a9fe15b052544d87feea57046f7.tar.xz
nixlib-f2198c46b2902a9fe15b052544d87feea57046f7.tar.zst
nixlib-f2198c46b2902a9fe15b052544d87feea57046f7.zip
Merge #84279: libjpeg(_turbo): 2.0.3 -> 2.0.4 (in staging)
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/libjpeg-turbo/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libjpeg-turbo/default.nix b/pkgs/development/libraries/libjpeg-turbo/default.nix
index f05ac6d521bf..e90516e8694c 100644
--- a/pkgs/development/libraries/libjpeg-turbo/default.nix
+++ b/pkgs/development/libraries/libjpeg-turbo/default.nix
@@ -3,11 +3,11 @@
 stdenv.mkDerivation rec {
 
   pname = "libjpeg-turbo";
-  version = "2.0.3";
+  version = "2.0.4";
 
   src = fetchurl {
     url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
-    sha256 = "1ds16bnj17v6hzd43w8pzijz3imd9am4hw75ir0fxm240m8dwij2";
+    sha256 = "01ill8bgjyk582wipx7sh7gj2nidylpbzvwhx0wkcm6mxx3qbp9k";
   };
 
   patches =
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
     homepage = http://libjpeg-turbo.virtualgl.org/;
     description = "A faster (using SIMD) libjpeg implementation";
     license = licenses.ijg; # and some parts under other BSD-style licenses
-    maintainers = [ maintainers.vcunat ];
+    maintainers = with maintainers; [ vcunat colemickens ];
     platforms = platforms.all;
   };
 }