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
647 B
Nix
Raw Normal View History

2022-05-31 19:06:44 +00:00
{ buildDunePackage
, dune-configurator
, fetchFromGitHub
, lib
, SDL2
, SDL2_mixer
, tsdl
}:
buildDunePackage rec {
pname = "tsdl-mixer";
2024-07-24 00:40:41 +00:00
version = "0.6";
duneVersion = "3";
2022-05-31 19:06:44 +00:00
src = fetchFromGitHub {
owner = "sanette";
repo = pname;
rev = version;
2024-07-24 00:40:41 +00:00
hash = "sha256-szuGmLzgGyQExCQwpopVNswtZZdhP29Q1+uNQJZb43Q=";
2022-05-31 19:06:44 +00: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;
maintainers = [ ];
2022-05-31 19:06:44 +00:00
};
}