soundtouch: 2.1.2 -> 2.2 (#103382)

authored by Orivej Desh and committed by GitHub 2deeb58f b719eb3c

+7 -4
+7 -4
pkgs/development/libraries/soundtouch/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "soundtouch"; 5 - version = "2.1.2"; 5 + version = "2.2"; 6 6 7 7 src = fetchFromGitLab { 8 8 owner = pname; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "174wgm3s0inmbnkrlnspxjwm2014qhjhkbdqa5r8rbfi0nzqxzsz"; 11 + sha256 = "12i6yg8vvqwyk412lxl2krbfby6hnxld8qxy0k4m5xp4g94jiq4p"; 12 12 }; 13 13 14 14 nativeBuildInputs = [ autoconf automake libtool ]; 15 15 16 16 preConfigure = "./bootstrap"; 17 + 18 + enableParallelBuilding = true; 17 19 18 20 meta = with lib; { 19 21 description = "A program and library for changing the tempo, pitch and playback rate of audio"; 20 - homepage = "http://www.surina.net/soundtouch/"; 21 - license = licenses.lgpl21; 22 + homepage = "https://www.surina.net/soundtouch/"; 23 + license = licenses.lgpl21Plus; 22 24 platforms = platforms.all; 25 + maintainers = with maintainers; [ orivej ]; 23 26 }; 24 27 }