2019-07-07 08:07:57 +02:00
|
|
|
{stdenv, lib, fetchFromGitLab, autoconf, automake, libtool}:
|
2014-12-09 10:15:30 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-07-07 08:07:57 +02:00
|
|
|
pname = "soundtouch";
|
2020-11-13 00:50:31 +01:00
|
|
|
version = "2.2";
|
2019-07-07 08:07:57 +02:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-11-13 00:50:31 +01:00
|
|
|
sha256 = "12i6yg8vvqwyk412lxl2krbfby6hnxld8qxy0k4m5xp4g94jiq4p";
|
2014-12-09 10:15:30 +01:00
|
|
|
};
|
|
|
|
|
2019-07-07 08:07:57 +02:00
|
|
|
nativeBuildInputs = [ autoconf automake libtool ];
|
2014-12-09 10:15:30 +01:00
|
|
|
|
2017-01-05 11:05:46 +01:00
|
|
|
preConfigure = "./bootstrap";
|
2014-12-09 10:15:30 +01:00
|
|
|
|
2020-11-13 00:50:31 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2019-07-07 08:07:57 +02:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A program and library for changing the tempo, pitch and playback rate of audio";
|
2020-11-13 00:50:31 +01:00
|
|
|
homepage = "https://www.surina.net/soundtouch/";
|
|
|
|
license = licenses.lgpl21Plus;
|
2019-07-07 08:07:57 +02:00
|
|
|
platforms = platforms.all;
|
2020-11-13 00:50:31 +01:00
|
|
|
maintainers = with maintainers; [ orivej ];
|
2014-12-09 10:15:30 +01:00
|
|
|
};
|
|
|
|
}
|