nixpkgs/pkgs/development/libraries/haskell/sdl2/default.nix

19 lines
509 B
Nix
Raw Normal View History

2014-09-25 13:15:56 -07:00
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
2014-11-12 15:39:07 -08:00
{ cabal, SDL2, transformers }:
2014-09-25 13:15:56 -07:00
cabal.mkDerivation (self: {
pname = "sdl2";
2014-11-12 15:39:07 -08:00
version = "1.3.0";
sha256 = "0fi9kjf12qlp64r2pxwc1k9241s23j6xm0dmwdsc18y8f6acvqxa";
buildDepends = [ transformers ];
2014-09-25 13:15:56 -07:00
extraLibraries = [ SDL2 ];
pkgconfigDepends = [ SDL2 ];
noHaddock = true;
2014-09-25 13:15:56 -07:00
meta = {
2014-10-03 11:01:35 -07:00
description = "Low-level bindings to SDL2";
2014-09-25 13:15:56 -07:00
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})