summary refs log tree commit diff
path: root/pkgs/development/libraries/SDL2_image
diff options
context:
space:
mode:
authorCarles Pagès <page@ruiec.cat>2018-03-06 11:24:12 +0100
committerCarles Pagès <page@ruiec.cat>2018-03-06 20:31:59 +0100
commit231f213ffaffa59e643b6d26167e866e434203b1 (patch)
tree534a4df5d767d7937553fb95a52ce4d25ffc0107 /pkgs/development/libraries/SDL2_image
parent344bc9cde6bbb3ebf63b39fb330b4b12b01eb93d (diff)
downloadnixpkgs-231f213ffaffa59e643b6d26167e866e434203b1.tar
nixpkgs-231f213ffaffa59e643b6d26167e866e434203b1.tar.gz
nixpkgs-231f213ffaffa59e643b6d26167e866e434203b1.tar.bz2
nixpkgs-231f213ffaffa59e643b6d26167e866e434203b1.tar.lz
nixpkgs-231f213ffaffa59e643b6d26167e866e434203b1.tar.xz
nixpkgs-231f213ffaffa59e643b6d26167e866e434203b1.tar.zst
nixpkgs-231f213ffaffa59e643b6d26167e866e434203b1.zip
SDL2_image: 2.0.2 -> 2.0.3
Diffstat (limited to 'pkgs/development/libraries/SDL2_image')
-rw-r--r--pkgs/development/libraries/SDL2_image/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/SDL2_image/default.nix b/pkgs/development/libraries/SDL2_image/default.nix
index 91b4a563da0..b0f2d0e8b8d 100644
--- a/pkgs/development/libraries/SDL2_image/default.nix
+++ b/pkgs/development/libraries/SDL2_image/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   name = "SDL2_image-${version}";
-  version = "2.0.2";
+  version = "2.0.3";
 
   src = fetchurl {
     url = "http://www.libsdl.org/projects/SDL_image/release/${name}.tar.gz";
-    sha256 = "1s3ciydixrgv34vlf45ak5syq5nlfaqf19wf162lbz4ixxd0gpvj";
+    sha256 = "0s13dmakn21q6yw8avl67d4zkxzl1wap6l5nwf6cvzrmlxfw441m";
   };
 
   buildInputs = [ SDL2 libpng libjpeg libtiff libungif libXpm zlib ]
@@ -19,5 +19,6 @@ stdenv.mkDerivation rec {
     homepage = http://www.libsdl.org/projects/SDL_image/;
     platforms = platforms.unix;
     license = licenses.zlib;
+    maintainers = with maintainers; [ cpages ];
   };
 }