2019-07-07 07:07:57 +01:00
|
|
|
{stdenv, lib, fetchFromGitLab, autoconf, automake, libtool}:
|
2014-12-09 09:15:30 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-07-07 07:07:57 +01:00
|
|
|
pname = "soundtouch";
|
|
|
|
version = "2.1.2";
|
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
|
|
|
sha256 = "174wgm3s0inmbnkrlnspxjwm2014qhjhkbdqa5r8rbfi0nzqxzsz";
|
2014-12-09 09:15:30 +00:00
|
|
|
};
|
|
|
|
|
2019-07-07 07:07:57 +01:00
|
|
|
nativeBuildInputs = [ autoconf automake libtool ];
|
2014-12-09 09:15:30 +00:00
|
|
|
|
2017-01-05 10:05:46 +00:00
|
|
|
preConfigure = "./bootstrap";
|
2014-12-09 09:15:30 +00:00
|
|
|
|
2019-07-07 07:07:57 +01:00
|
|
|
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;
|
|
|
|
platforms = platforms.all;
|
2014-12-09 09:15:30 +00:00
|
|
|
};
|
|
|
|
}
|