stdenv: fix documentation for stripAllFlags and stripDebugFlags (#352127)
[NixPkgs.git] / pkgs / development / ocaml-modules / samplerate / default.nix
blob51f80d727f1afc8b82c579594da9f4de60efba85
2   lib,
3   buildDunePackage,
4   fetchFromGitHub,
5   dune-configurator,
6   libsamplerate,
7 }:
9 buildDunePackage rec {
10   pname = "samplerate";
11   version = "0.1.6";
13   useDune2 = true;
15   src = fetchFromGitHub {
16     owner = "savonet";
17     repo = "ocaml-samplerate";
18     rev = "v${version}";
19     sha256 = "0h0i9v9p9n2givv3wys8qrfi1i7vp8kq7lnkf14s7d3m4r8x4wrp";
20   };
22   buildInputs = [ dune-configurator ];
23   propagatedBuildInputs = [ libsamplerate ];
25   meta = with lib; {
26     homepage = "https://github.com/savonet/ocaml-samplerate";
27     description = "Interface for libsamplerate";
28     license = licenses.bsd2;
29     maintainers = with maintainers; [ dandellion ];
30   };