ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git] / pkgs / development / ocaml-modules / alsa / default.nix
blob15b60d2882218fedbead2e8880e43da3fcf17d05
2   lib,
3   buildDunePackage,
4   fetchFromGitHub,
5   dune-configurator,
6   alsa-lib,
7 }:
9 buildDunePackage rec {
10   pname = "alsa";
11   version = "0.3.0";
13   minimalOCamlVersion = "4.02";
15   src = fetchFromGitHub {
16     owner = "savonet";
17     repo = "ocaml-alsa";
18     rev = version;
19     sha256 = "1qy22g73qc311rmv41w005rdlj5mfnn4yj1dx1jhqzr31zixl8hj";
20   };
22   buildInputs = [ dune-configurator ];
23   propagatedBuildInputs = [ alsa-lib ];
25   meta = with lib; {
26     homepage = "https://github.com/savonet/ocaml-alsa";
27     description = "OCaml interface for libasound2";
28     license = licenses.gpl2Only;
29     maintainers = with maintainers; [ dandellion ];
30   };