nixpkgs/pkgs/development/libraries/soundtouch/default.nix
Vladimír Čunát 5d3563f80c
treewide: more fixes of phases after bash 4.3 -> 4.4
I'm surprised that the packages ever worked.
2017-01-05 11:07:04 +01:00

23 lines
694 B
Nix

{stdenv, fetchurl, autoconf, automake, libtool}:
stdenv.mkDerivation rec {
pName = "soundtouch";
name = "${pName}-1.9.2";
src = fetchurl {
url = "http://www.surina.net/soundtouch/${name}.tar.gz";
sha256 = "04y5l56yn4jvwpv9mn1p3m2vi5kdym9xpdac8pmhwhl13r8qdsya";
};
buildInputs = [ autoconf automake libtool ];
preConfigure = "./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;
};
}