linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / soundtouch / default.nix
blobb29095f7e19916684d1f3df77a06ae94938bf841
1 {stdenv, lib, fetchFromGitLab, autoconf, automake, libtool}:
3 stdenv.mkDerivation rec {
4   pname = "soundtouch";
5   version = "2.2";
7   src = fetchFromGitLab {
8     owner = pname;
9     repo = pname;
10     rev = version;
11     sha256 = "12i6yg8vvqwyk412lxl2krbfby6hnxld8qxy0k4m5xp4g94jiq4p";
12   };
14   nativeBuildInputs = [ autoconf automake libtool ];
16   preConfigure = "./bootstrap";
18   enableParallelBuilding = true;
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   };