Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{
2 lib,
3 buildDunePackage,
4 fetchFromGitHub,
5 dune-configurator,
6 soundtouch,
7}:
8
9buildDunePackage rec {
10 pname = "soundtouch";
11 version = "0.1.9";
12
13 src = fetchFromGitHub {
14 owner = "savonet";
15 repo = "ocaml-soundtouch";
16 rev = "v${version}";
17 sha256 = "sha256-81Mhk4PZx4jGrVIevzMslvVbKzipzDzHWnbtOjeZCI8=";
18 };
19
20 buildInputs = [ dune-configurator ];
21 propagatedBuildInputs = [ soundtouch ];
22
23 meta = with lib; {
24 homepage = "https://github.com/savonet/ocaml-soundtouch";
25 description = "Bindings for the soundtouch library which provides functions for changing pitch and timestretching audio data";
26 license = licenses.lgpl21Plus;
27 maintainers = with maintainers; [ dandellion ];
28 };
29}