lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocamlPackages.samplerate: init at 0.1.6

authored by

Daniel Olsen and committed by
Vincent Laporte
ee672c82 8c8b1f2e

+27
+25
pkgs/development/ocaml-modules/samplerate/default.nix
··· 1 + { lib, buildDunePackage, fetchFromGitHub, dune-configurator, libsamplerate }: 2 + 3 + buildDunePackage rec { 4 + pname = "samplerate"; 5 + version = "0.1.6"; 6 + 7 + useDune2 = true; 8 + 9 + src = fetchFromGitHub { 10 + owner = "savonet"; 11 + repo = "ocaml-samplerate"; 12 + rev = "v${version}"; 13 + sha256 = "0h0i9v9p9n2givv3wys8qrfi1i7vp8kq7lnkf14s7d3m4r8x4wrp"; 14 + }; 15 + 16 + buildInputs = [ dune-configurator ]; 17 + propagatedBuildInputs = [ libsamplerate ]; 18 + 19 + meta = with lib; { 20 + homepage = "https://github.com/savonet/ocaml-samplerate"; 21 + description = "Interface for libsamplerate"; 22 + license = licenses.bsd2; 23 + maintainers = with maintainers; [ dandellion ]; 24 + }; 25 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 1108 1108 1109 1109 result = callPackage ../development/ocaml-modules/ocaml-result { }; 1110 1110 1111 + samplerate = callPackage ../development/ocaml-modules/samplerate { }; 1112 + 1111 1113 secp256k1 = callPackage ../development/ocaml-modules/secp256k1 { 1112 1114 inherit (pkgs) secp256k1; 1113 1115 };