Files
2026-05-12 13:28:42 -05:00

32 lines
724 B
Nix

{
lib,
buildDunePackage,
fetchFromGitHub,
dune-configurator,
pkg-config,
pulseaudio,
}:
buildDunePackage (finalAttrs: {
pname = "pulseaudio";
version = "0.1.5";
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-pulseaudio";
rev = "v${finalAttrs.version}";
sha256 = "sha256-eG2HS5g3ycDftRDyXGBwPJE7VRnLXNUgcEgNfVm//ds=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ pulseaudio ];
meta = {
homepage = "https://github.com/savonet/ocaml-pulseaudio";
description = "Bindings to Pulseaudio client library";
license = lib.licenses.lgpl21Only;
maintainers = with lib.maintainers; [ dandellion ];
};
})