nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 26 lines 462 B view raw
1{ 2 lib, 3 buildDunePackage, 4 fetchFromGitHub, 5 dune-configurator, 6 ogg, 7 speex, 8}: 9 10buildDunePackage { 11 pname = "speex"; 12 inherit (ogg) version src; 13 14 buildInputs = [ dune-configurator ]; 15 propagatedBuildInputs = [ 16 ogg 17 speex.dev 18 ]; 19 20 meta = { 21 homepage = "https://github.com/savonet/ocaml-speex"; 22 description = "Bindings to libspeex"; 23 license = lib.licenses.gpl2Only; 24 maintainers = with lib.maintainers; [ dandellion ]; 25 }; 26}