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