nixpkgs/pkgs/development/libraries/haskell/SDL-mixer/default.nix
Peter Simons dc3535b0c9 SDL-mixer: updated to version 0.6.1
svn path=/nixpkgs/trunk/; revision=28315
2011-08-07 22:00:51 +00:00

15 lines
418 B
Nix

{cabal, SDL} :
cabal.mkDerivation (self : {
pname = "SDL-mixer";
version = "0.6.1";
sha256 = "1fxp5sz0w6pr5047jjvh81wkljxsl7fca239364i50m44mpcsyn1";
propagatedBuildInputs = [ SDL ];
meta = {
description = "Binding to libSDL_mixer";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [ self.stdenv.lib.maintainers.simons ];
};
})