2014-12-09 09:15:30 +00:00
|
|
|
{stdenv, fetchurl, autoconf, automake, libtool}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pName = "soundtouch";
|
2018-02-28 00:41:44 +00:00
|
|
|
name = "${pName}-2.0.0";
|
2014-12-09 09:15:30 +00:00
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://www.surina.net/soundtouch/${name}.tar.gz";
|
2018-02-28 00:41:44 +00:00
|
|
|
sha256 = "09cxr02mfyj2bg731bj0i9hh565x8l9p91aclxs8wpqv8b8zf96j";
|
2014-12-09 09:15:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ autoconf automake libtool ];
|
|
|
|
|
2017-01-05 10:05:46 +00:00
|
|
|
preConfigure = "./bootstrap";
|
2014-12-09 09:15:30 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A program and library for changing the tempo, pitch and playback rate of audio";
|
|
|
|
homepage = http://www.surina.net/soundtouch/;
|
|
|
|
downloadPage = http://www.surina.net/soundtouch/sourcecode.html;
|
|
|
|
license = stdenv.lib.licenses.lgpl21;
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|