packages feed

cabal2nix-2.8.2: test/golden-test-cases/sdl2.nix.golden

{ mkDerivation, base, bytestring, exceptions, fetchurl, linear
, SDL2, StateVar, text, transformers, vector
}:
mkDerivation {
  pname = "sdl2";
  version = "2.3.0";
  src = fetchurl {
    url = "http://example.org/";
    sha256 = "abc";
  };
  isLibrary = true;
  isExecutable = true;
  enableSeparateDataOutput = true;
  libraryHaskellDepends = [
    base bytestring exceptions linear StateVar text transformers vector
  ];
  librarySystemDepends = [ SDL2 ];
  libraryPkgconfigDepends = [ SDL2 ];
  description = "Both high- and low-level bindings to the SDL library (version 2.0.4+).";
  license = stdenv.lib.licenses.bsd3;
}