summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/SDL/default.nix
blob: a1ef26ca565c096d8d95c1ddfd316ed78eda4345 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{cabal, SDL} :

cabal.mkDerivation (self : {
  pname = "SDL";
  version = "0.6.2";
  sha256 = "1fqj3sw709q28rmjzcffa3k1mcp7r9cvdrrqmcppaz5yv63ychly";
  propagatedBuildInputs = [ SDL ];
  meta = {
    description = "Binding to libSDL";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.simons ];
  };
})