2012-02-16 06:05:41 -08:00
|
|
|
{ cabal, SDL, SDL_image }:
|
2009-04-25 08:33:29 -07:00
|
|
|
|
2011-08-23 03:35:49 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2009-04-25 08:33:29 -07:00
|
|
|
pname = "SDL-image";
|
2011-08-07 15:00:44 -07:00
|
|
|
version = "0.6.1";
|
|
|
|
sha256 = "18n6al40db7xalqqr4hp0l26qxxv1kmd8mva0n7vmhg05zypf6ni";
|
2012-02-16 06:05:41 -08:00
|
|
|
buildDepends = [ SDL ];
|
2011-08-23 03:35:49 -07:00
|
|
|
extraLibraries = [ SDL_image ];
|
2009-04-25 08:33:29 -07:00
|
|
|
meta = {
|
|
|
|
description = "Binding to libSDL_image";
|
2011-08-07 15:00:44 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 02:54:50 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-03-23 06:57:25 -07:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2009-04-25 08:33:29 -07:00
|
|
|
};
|
2011-03-28 08:04:00 -07:00
|
|
|
})
|