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

17 lines
440 B
Nix
Raw Normal View History

2014-09-25 22:15:56 +02:00
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, SDL2 }:
cabal.mkDerivation (self: {
pname = "sdl2";
2014-10-19 14:16:18 +02:00
version = "1.1.3";
sha256 = "111kbairf50j8kkndcc54i0gsfaffnyla7zw49gbqlqs4kgxj6b5";
2014-09-25 22:15:56 +02:00
extraLibraries = [ SDL2 ];
pkgconfigDepends = [ SDL2 ];
meta = {
2014-10-03 20:01:35 +02:00
description = "Low-level bindings to SDL2";
2014-09-25 22:15:56 +02:00
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})