mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 08:36:41 +01:00
23 lines
712 B
Nix
23 lines
712 B
Nix
|
{stdenv, fetchurl, autoconf, automake, libtool}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pName = "soundtouch";
|
||
|
name = "${pName}-1.8.0";
|
||
|
src = fetchurl {
|
||
|
url = "http://www.surina.net/soundtouch/${name}.tar.gz";
|
||
|
sha256 = "3d4161d74ca25c5a98c69dbb8ea10fd2be409ba1a3a0bf81db407c4c261f166b";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ autoconf automake libtool ];
|
||
|
|
||
|
preConfigurePhases = "./bootstrap";
|
||
|
|
||
|
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;
|
||
|
};
|
||
|
}
|