ocamlPackages.speex: init at 0.4.1

authored by Daniel Olsen and committed by Vincent Laporte bfdbfc1e c295827d

+29
+25
pkgs/development/ocaml-modules/speex/default.nix
···
··· 1 + { lib, buildDunePackage, fetchFromGitHub, dune-configurator, ogg, speex }: 2 + 3 + buildDunePackage rec { 4 + pname = "speex"; 5 + version = "0.4.1"; 6 + 7 + useDune2 = true; 8 + 9 + src = fetchFromGitHub { 10 + owner = "savonet"; 11 + repo = "ocaml-speex"; 12 + rev = "v${version}"; 13 + sha256 = "0p4ip37kihlz9qy604llak2kzd00g45ix1yiihnrri2nm01scfab"; 14 + }; 15 + 16 + buildInputs = [ dune-configurator ]; 17 + propagatedBuildInputs = [ ogg speex.dev ]; 18 + 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 + }; 25 + }
+4
pkgs/top-level/ocaml-packages.nix
··· 1114 1115 spacetime_lib = callPackage ../development/ocaml-modules/spacetime_lib { }; 1116 1117 tar-unix = callPackage ../development/ocaml-modules/tar/unix.nix { }; 1118 1119 tar = callPackage ../development/ocaml-modules/tar { };
··· 1114 1115 spacetime_lib = callPackage ../development/ocaml-modules/spacetime_lib { }; 1116 1117 + speex = callPackage ../development/ocaml-modules/speex { 1118 + inherit (pkgs) speex; 1119 + }; 1120 + 1121 tar-unix = callPackage ../development/ocaml-modules/tar/unix.nix { }; 1122 1123 tar = callPackage ../development/ocaml-modules/tar { };