biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / pulseaudio / default.nix
blob75f5e0f414fb020045799143125d5acc9677ade5
1 { lib, buildDunePackage, fetchFromGitHub, dune-configurator, pkg-config, pulseaudio }:
3 buildDunePackage rec {
4   pname = "pulseaudio";
5   version = "0.1.5";
7   src = fetchFromGitHub {
8     owner = "savonet";
9     repo = "ocaml-pulseaudio";
10     rev = "v${version}";
11     sha256 = "sha256-eG2HS5g3ycDftRDyXGBwPJE7VRnLXNUgcEgNfVm//ds=";
12   };
14   nativeBuildInputs = [ pkg-config ];
15   buildInputs = [ dune-configurator ];
16   propagatedBuildInputs = [ pulseaudio ];
18   meta = with lib; {
19     homepage = "https://github.com/savonet/ocaml-pulseaudio";
20     description = "Bindings to Pulseaudio client library";
21     license = licenses.lgpl21Only;
22     maintainers = with maintainers; [ dandellion ];
23   };