nixpkgs/pkgs/development/ocaml-modules/tsdl-mixer/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
665 B
Nix
Raw Normal View History

2022-05-31 20:06:44 +01:00
{ buildDunePackage
, dune-configurator
, fetchFromGitHub
, lib
, SDL2
, SDL2_mixer
, tsdl
}:
buildDunePackage rec {
pname = "tsdl-mixer";
version = "0.5";
duneVersion = "3";
2022-05-31 20:06:44 +01:00
src = fetchFromGitHub {
owner = "sanette";
repo = pname;
rev = version;
hash = "sha256-HGtO5iO3lxuVa707MDIhw0pgDZLHt9qY+Rd24sFkags=";
2022-05-31 20:06:44 +01:00
};
buildInputs = [
dune-configurator
];
propagatedBuildInputs = [
SDL2
SDL2_mixer
tsdl
];
meta = with lib; {
description = "SDL2_mixer bindings to go with Tsdl";
homepage = "https://github.com/sanette/tsdl-mixer";
license = licenses.bsd3;
2022-10-04 18:06:48 +01:00
maintainers = with maintainers; [ ];
2022-05-31 20:06:44 +01:00
};
}