summary refs log tree commit diff
path: root/pkgs/development/libraries/soundtouch/default.nix
blob: dcb09af84f95a68c7f8c80bd130a20d2b2df62bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{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;
  };
}