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";
|
2023-03-26 05:45:59 +00:00
|
|
|
|
|
|
|
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;
|
2024-07-28 14:44:11 +00:00
|
|
|
maintainers = [ ];
|
2022-05-31 19:06:44 +00:00
|
|
|
};
|
|
|
|
}
|