ocamlPackages.tsdl-ttf: init 0.3.2

authored by

superherointj and committed by
Vincent Laporte
174d0fbd b161742e

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