1 {stdenv, lib, fetchFromGitLab, autoconf, automake, libtool}:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitLab {
11 sha256 = "12i6yg8vvqwyk412lxl2krbfby6hnxld8qxy0k4m5xp4g94jiq4p";
14 nativeBuildInputs = [ autoconf automake libtool ];
16 preConfigure = "./bootstrap";
18 enableParallelBuilding = true;
21 description = "A program and library for changing the tempo, pitch and playback rate of audio";
22 homepage = "https://www.surina.net/soundtouch/";
23 license = licenses.lgpl21Plus;
24 platforms = platforms.all;
25 maintainers = with maintainers; [ orivej ];