summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/SDL-image/default.nix
blob: 6c61813ac30807a4a1948f8ac50e3dac0404b65e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ 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 ];
  };
})