Skip to content

Commit

Permalink
Merge pull request #56823 from callahad/sdl2-webp
Browse files Browse the repository at this point in the history
SDL2_image: support WebP images
  • Loading branch information
cpages committed Mar 4, 2019
2 parents aa4f5cc + f972720 commit 9fa7ca4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/libraries/SDL2_image/default.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, SDL2, libpng, libjpeg, libtiff, libungif, libXpm, zlib, Foundation }:
{ stdenv, fetchurl, SDL2, libpng, libjpeg, libtiff, libungif, libwebp, libXpm, zlib, Foundation }:

stdenv.mkDerivation rec {
name = "SDL2_image-${version}";
Expand All @@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "1b6f7002bm007y3zpyxb5r6ag0lml51jyvx1pwpj9sq24jfc8kp7";
};

buildInputs = [ SDL2 libpng libjpeg libtiff libungif libXpm zlib ]
buildInputs = [ SDL2 libpng libjpeg libtiff libungif libwebp libXpm zlib ]
++ stdenv.lib.optional stdenv.isDarwin Foundation;


Expand Down

0 comments on commit 9fa7ca4

Please sign in to comment.