2012-02-14 18:00:37 +01:00
|
|
|
{ cabal, Cabal, SDL, SDL_image }:
|
2009-04-25 17:33:29 +02:00
|
|
|
|
2011-08-23 12:35:49 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2009-04-25 17:33:29 +02:00
|
|
|
pname = "SDL-image";
|
2011-08-08 00:00:44 +02:00
|
|
|
version = "0.6.1";
|
|
|
|
sha256 = "18n6al40db7xalqqr4hp0l26qxxv1kmd8mva0n7vmhg05zypf6ni";
|
2012-02-14 18:00:37 +01:00
|
|
|
buildDepends = [ Cabal SDL ];
|
2011-08-23 12:35:49 +02:00
|
|
|
extraLibraries = [ SDL_image ];
|
2009-04-25 17:33:29 +02:00
|
|
|
meta = {
|
|
|
|
description = "Binding to libSDL_image";
|
2011-08-08 00:00:44 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-15 13:27:02 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2009-04-25 17:33:29 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|