summary refs log tree commit diff
path: root/pkgs/development/libraries/SDL_image
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2016-08-22 06:24:00 +0300
committerNikolay Amiantov <ab@fmap.me>2016-08-22 06:30:00 +0300
commitb47327ebd535468f71bbf6a46366e0bd9357b599 (patch)
tree987e9ce4217b3a72404729c539a6e5f13420a5e2 /pkgs/development/libraries/SDL_image
parent3e2458a08537e1cd6a5dbcd2ad0cd7fe83be5d34 (diff)
downloadnixpkgs-b47327ebd535468f71bbf6a46366e0bd9357b599.tar
nixpkgs-b47327ebd535468f71bbf6a46366e0bd9357b599.tar.gz
nixpkgs-b47327ebd535468f71bbf6a46366e0bd9357b599.tar.bz2
nixpkgs-b47327ebd535468f71bbf6a46366e0bd9357b599.tar.lz
nixpkgs-b47327ebd535468f71bbf6a46366e0bd9357b599.tar.xz
nixpkgs-b47327ebd535468f71bbf6a46366e0bd9357b599.tar.zst
nixpkgs-b47327ebd535468f71bbf6a46366e0bd9357b599.zip
SDL: cleanup and add patch to discover extensions
Diffstat (limited to 'pkgs/development/libraries/SDL_image')
-rw-r--r--pkgs/development/libraries/SDL_image/default.nix14
1 files changed, 3 insertions, 11 deletions
diff --git a/pkgs/development/libraries/SDL_image/default.nix b/pkgs/development/libraries/SDL_image/default.nix
index a1d83950477..62af47807cc 100644
--- a/pkgs/development/libraries/SDL_image/default.nix
+++ b/pkgs/development/libraries/SDL_image/default.nix
@@ -1,7 +1,8 @@
 { stdenv, fetchurl, SDL, libpng, libjpeg, libtiff, libungif, libXpm }:
 
 stdenv.mkDerivation rec {
-  name = "SDL_image-1.2.12";
+  name = "SDL_image-${version}";
+  version = "1.2.12";
 
   src = fetchurl {
     url    = "http://www.libsdl.org/projects/SDL_image/release/${name}.tar.gz";
@@ -10,18 +11,9 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ SDL libpng libjpeg libtiff libungif libXpm ];
 
-  postInstall = ''
-    sed -i -e 's,"SDL.h",<SDL/SDL.h>,' \
-      -e 's,"SDL_version.h",<SDL/SDL_version.h>,' \
-      -e 's,"begin_code.h",<SDL/begin_code.h>,' \
-      -e 's,"close_code.h",<SDL/close_code.h>,' \
-      $out/include/SDL/SDL_image.h
-    ln -sv SDL/SDL_image.h $out/include/SDL_image.h
-  '';
-
   meta = with stdenv.lib; {
     description = "SDL image library";
-    homepage    = http://www.libsdl.org/projects/SDL_image/;
+    homepage    = "http://www.libsdl.org/projects/SDL_image/";
     maintainers = with maintainers; [ lovek323 ];
     platforms   = platforms.unix;
   };