soundtouch: 2.1.2 -> 2.2 (#103382)

gstqt5
Orivej Desh 2020-11-12 23:50:31 +00:00 committed by GitHub
parent b719eb3c9f
commit 2deeb58f49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 4 deletions

View File

@ -2,23 +2,26 @@
stdenv.mkDerivation rec {
pname = "soundtouch";
version = "2.1.2";
version = "2.2";
src = fetchFromGitLab {
owner = pname;
repo = pname;
rev = version;
sha256 = "174wgm3s0inmbnkrlnspxjwm2014qhjhkbdqa5r8rbfi0nzqxzsz";
sha256 = "12i6yg8vvqwyk412lxl2krbfby6hnxld8qxy0k4m5xp4g94jiq4p";
};
nativeBuildInputs = [ autoconf automake libtool ];
preConfigure = "./bootstrap";
enableParallelBuilding = true;
meta = with lib; {
description = "A program and library for changing the tempo, pitch and playback rate of audio";
homepage = "http://www.surina.net/soundtouch/";
license = licenses.lgpl21;
homepage = "https://www.surina.net/soundtouch/";
license = licenses.lgpl21Plus;
platforms = platforms.all;
maintainers = with maintainers; [ orivej ];
};
}