summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/sdl2/default.nix
blob: 29561239d19358173c574ac7c1cb394fe42894e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# This file was auto-generated by cabal2nix. Please do NOT edit manually!

{ cabal, SDL2, transformers }:

cabal.mkDerivation (self: {
  pname = "sdl2";
  version = "1.3.0";
  sha256 = "0fi9kjf12qlp64r2pxwc1k9241s23j6xm0dmwdsc18y8f6acvqxa";
  buildDepends = [ transformers ];
  extraLibraries = [ SDL2 ];
  pkgconfigDepends = [ SDL2 ];
  meta = {
    description = "Low-level bindings to SDL2";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})