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 3 stdenv.mkDerivation rec { 4 pname = "soundtouch"; 5 - version = "2.1.2"; 6 7 src = fetchFromGitLab { 8 owner = pname; 9 repo = pname; 10 rev = version; 11 - sha256 = "174wgm3s0inmbnkrlnspxjwm2014qhjhkbdqa5r8rbfi0nzqxzsz"; 12 }; 13 14 nativeBuildInputs = [ autoconf automake libtool ]; 15 16 preConfigure = "./bootstrap"; 17 18 meta = with lib; { 19 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 platforms = platforms.all; 23 }; 24 }
··· 2 3 stdenv.mkDerivation rec { 4 pname = "soundtouch"; 5 + version = "2.2"; 6 7 src = fetchFromGitLab { 8 owner = pname; 9 repo = pname; 10 rev = version; 11 + sha256 = "12i6yg8vvqwyk412lxl2krbfby6hnxld8qxy0k4m5xp4g94jiq4p"; 12 }; 13 14 nativeBuildInputs = [ autoconf automake libtool ]; 15 16 preConfigure = "./bootstrap"; 17 + 18 + enableParallelBuilding = true; 19 20 meta = with lib; { 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 ]; 26 }; 27 }