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