ocamlPackages.tsdl-mixer: init 0.3.2

authored by

superherointj and committed by
Vincent Laporte
13785fcc 174d0fbd

+39
+37
pkgs/development/ocaml-modules/tsdl-mixer/default.nix
··· 1 + { buildDunePackage 2 + , dune-configurator 3 + , fetchFromGitHub 4 + , lib 5 + , SDL2 6 + , SDL2_mixer 7 + , tsdl 8 + }: 9 + 10 + buildDunePackage rec { 11 + pname = "tsdl-mixer"; 12 + version = "0.3.2"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "sanette"; 16 + repo = pname; 17 + rev = version; 18 + sha256 = "sha256-UDRhwnanrn87/PYVnacur1z/LsKuUu2G+0QQXjTw/IE="; 19 + }; 20 + 21 + buildInputs = [ 22 + dune-configurator 23 + ]; 24 + 25 + propagatedBuildInputs = [ 26 + SDL2 27 + SDL2_mixer 28 + tsdl 29 + ]; 30 + 31 + meta = with lib; { 32 + description = "SDL2_mixer bindings to go with Tsdl"; 33 + homepage = "https://github.com/sanette/tsdl-mixer"; 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-mixer = callPackage ../development/ocaml-modules/tsdl-mixer { }; 1373 + 1372 1374 tsdl-ttf = callPackage ../development/ocaml-modules/tsdl-ttf { }; 1373 1375 1374 1376 twt = callPackage ../development/ocaml-modules/twt { };