about summary refs log tree commit diff
path: root/pkgs/development/libraries/SDL_mixer
diff options
context:
space:
mode:
authorJason \"Don\" O'Conal <lovek323@gmail.com>2013-09-06 11:47:49 +1000
committerVladimír Čunát <vcunat@gmail.com>2013-09-08 10:32:25 +0200
commit834cd6c886bece46a553203f03522f192b66da2c (patch)
tree0e650cb505ece6d1b5c81d514e59b56dcf5684dd /pkgs/development/libraries/SDL_mixer
parent38d54cfc211e2463874cb82d0a6c83a2fb1cb5a3 (diff)
downloadnixlib-834cd6c886bece46a553203f03522f192b66da2c.tar
nixlib-834cd6c886bece46a553203f03522f192b66da2c.tar.gz
nixlib-834cd6c886bece46a553203f03522f192b66da2c.tar.bz2
nixlib-834cd6c886bece46a553203f03522f192b66da2c.tar.lz
nixlib-834cd6c886bece46a553203f03522f192b66da2c.tar.xz
nixlib-834cd6c886bece46a553203f03522f192b66da2c.tar.zst
nixlib-834cd6c886bece46a553203f03522f192b66da2c.zip
beret: Fix build on darwin (close #923)
Diffstat (limited to 'pkgs/development/libraries/SDL_mixer')
-rw-r--r--pkgs/development/libraries/SDL_mixer/default.nix16
1 files changed, 9 insertions, 7 deletions
diff --git a/pkgs/development/libraries/SDL_mixer/default.nix b/pkgs/development/libraries/SDL_mixer/default.nix
index af83f19dbbde..f5b40daaf68c 100644
--- a/pkgs/development/libraries/SDL_mixer/default.nix
+++ b/pkgs/development/libraries/SDL_mixer/default.nix
@@ -1,14 +1,13 @@
 { stdenv, fetchurl, SDL, libogg, libvorbis, enableNativeMidi ? false }:
 
 stdenv.mkDerivation rec {
-  pname = "SDL_mixer";
-  version = "1.2.8";
-
-  name = "${pname}-${version}";
+  pname   = "SDL_mixer";
+  version = "1.2.12";
+  name    = "${pname}-${version}";
 
   src = fetchurl {
-    url = "http://www.libsdl.org/projects/${pname}/release/${name}.tar.gz";
-    sha256 = "a8222a274778ff16d0e3ee49a30db27a48a4d357169a915fc599a764e405e0b6";
+    url    = "http://www.libsdl.org/projects/${pname}/release/${name}.tar.gz";
+    sha256 = "0alrhqgm40p4c92s26mimg9cm1y7rzr6m0p49687jxd9g6130i0n";
   };
 
   buildInputs = [SDL libogg libvorbis];
@@ -17,7 +16,10 @@ stdenv.mkDerivation rec {
 
   postInstall = "ln -s $out/include/SDL/SDL_mixer.h $out/include/";
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "SDL multi-channel audio mixer library";
+    homepage    = http://www.libsdl.org/projects/SDL_mixer/;
+    maintainers = with maintainers; [ lovek323 ];
+    platforms   = platforms.unix;
   };
 }