nixpkgs/pkgs/development/libraries/haskell/SDL-image/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

16 lines
435 B
Nix

{ cabal, SDL, SDL_image }:
cabal.mkDerivation (self: {
pname = "SDL-image";
version = "0.6.1";
sha256 = "18n6al40db7xalqqr4hp0l26qxxv1kmd8mva0n7vmhg05zypf6ni";
buildDepends = [ SDL ];
extraLibraries = [ SDL_image ];
meta = {
description = "Binding to libSDL_image";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})