ocamlPackages.tsdl-image: init 0.3.2

authored by

superherointj and committed by
Vincent Laporte
b161742e 5feacad6

+39
+37
pkgs/development/ocaml-modules/tsdl-image/default.nix
··· 1 + { buildDunePackage 2 + , dune-configurator 3 + , fetchFromGitHub 4 + , lib 5 + , SDL2 6 + , SDL2_image 7 + , tsdl 8 + }: 9 + 10 + buildDunePackage rec { 11 + pname = "tsdl-image"; 12 + version = "0.3.2"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "sanette"; 16 + repo = pname; 17 + rev = version; 18 + sha256 = "sha256-u6VYAwq+2oLn2Kw1+KQRVPswAqeKDSAaPfGLPrzn30s="; 19 + }; 20 + 21 + buildInputs = [ 22 + dune-configurator 23 + ]; 24 + 25 + propagatedBuildInputs = [ 26 + SDL2 27 + SDL2_image 28 + tsdl 29 + ]; 30 + 31 + meta = with lib; { 32 + description = "OCaml SDL2_image bindings to go with Tsdl"; 33 + homepage = "https://github.com/sanette/tsdl-image"; 34 + license = licenses.bsd3; 35 + maintainers = with maintainers; [ superherointj ]; 36 + }; 37 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 1367 1367 1368 1368 tsdl = callPackage ../development/ocaml-modules/tsdl { }; 1369 1369 1370 + tsdl-image = callPackage ../development/ocaml-modules/tsdl-image { }; 1371 + 1370 1372 twt = callPackage ../development/ocaml-modules/twt { }; 1371 1373 1372 1374 uchar = callPackage ../development/ocaml-modules/uchar { };