fblog: 4.4.0 -> 4.5.0
[NixPkgs.git] / pkgs / development / ocaml-modules / speex / default.nix
blob1bf5f308ecf22611a0c5540ccfae603faf7cf90f
1 { lib, buildDunePackage, fetchFromGitHub, dune-configurator, ogg, speex }:
3 buildDunePackage rec {
4   pname = "speex";
5   version = "0.4.1";
7   useDune2 = true;
9   src = fetchFromGitHub {
10     owner = "savonet";
11     repo = "ocaml-speex";
12     rev = "v${version}";
13     sha256 = "0p4ip37kihlz9qy604llak2kzd00g45ix1yiihnrri2nm01scfab";
14   };
16   buildInputs = [ dune-configurator ];
17   propagatedBuildInputs = [ ogg speex.dev ];
19   meta = with lib; {
20     homepage = "https://github.com/savonet/ocaml-speex";
21     description = "Bindings to libspeex";
22     license = licenses.gpl2Only;
23     maintainers = with maintainers; [ dandellion ];
24   };