Files
nixpkgs/pkgs/development/ocaml-modules/speex/default.nix
Vincent Laporte 8646483b76 liquidsoap: 2.3.0 → 2.3.3
ocamlPackages.ogg: 0.7.4 → 1.0.0
ocamlPackages.flac: 0.5.1 → 1.0.0
ocamlPackages.opus: 0.2.2 → 1.0.0
ocamlPackages.speex: 0.4.1 → 1.0.0
ocamlPackages.theora: 0.4.1 → 1.0.0
ocamlPackages.vorbis: 0.8.0 → 1.0.0
2025-09-01 09:18:09 +02:00

27 lines
464 B
Nix

{
lib,
buildDunePackage,
fetchFromGitHub,
dune-configurator,
ogg,
speex,
}:
buildDunePackage {
pname = "speex";
inherit (ogg) version src;
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [
ogg
speex.dev
];
meta = with lib; {
homepage = "https://github.com/savonet/ocaml-speex";
description = "Bindings to libspeex";
license = licenses.gpl2Only;
maintainers = with maintainers; [ dandellion ];
};
}