haskellPackages.sdl2: New expression

This commit is contained in:
Oliver Charles
2014-09-25 21:15:56 +01:00
parent d9fb16ebd7
commit e2d06c45b4
2 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, SDL2 }:
cabal.mkDerivation (self: {
pname = "sdl2";
version = "1.1.0";
sha256 = "1ppxskh810nbziszlkdmk38x74lspsrqm1kpyiir1xj2a7122fkv";
extraLibraries = [ SDL2 ];
pkgconfigDepends = [ SDL2 ];
meta = {
description = "Bindings to SDL2";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})