evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / tsdl-image / default.nix
blobcc9404ed193e209ebfe2abcaa4d9da9ba64b5364
1 { buildDunePackage
2 , dune-configurator
3 , fetchFromGitHub
4 , lib
5 , SDL2
6 , SDL2_image
7 , tsdl
8 }:
10 buildDunePackage rec {
11   pname = "tsdl-image";
12   version = "0.6";
14   duneVersion = "3";
16   src = fetchFromGitHub {
17     owner = "sanette";
18     repo = pname;
19     rev = version;
20     hash = "sha256-mgTFwkuFJVwJmHrzHSdNh8v4ehZIcWemK+eLqjglw5o=";
21   };
23   buildInputs = [
24     dune-configurator
25   ];
27   propagatedBuildInputs = [
28     SDL2
29     SDL2_image
30     tsdl
31   ];
33   meta = with lib; {
34     description = "OCaml SDL2_image bindings to go with Tsdl";
35     homepage = "https://github.com/sanette/tsdl-image";
36     license = licenses.bsd3;
37     maintainers = [ ];
38   };