summary refs log blame commit diff
path: root/pkgs/development/libraries/soundtouch/default.nix
blob: 71c7915c2ede6aa21206c11e50e2bdee61468cba (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                                            

                         







                                                                    

    
                                                    
 
                               
 




                                                                                                   

    
{stdenv, lib, fetchFromGitLab, autoconf, automake, libtool}:

stdenv.mkDerivation rec {
  pname = "soundtouch";
  version = "2.1.2";

  src = fetchFromGitLab {
    owner = pname;
    repo = pname;
    rev = version;
    sha256 = "174wgm3s0inmbnkrlnspxjwm2014qhjhkbdqa5r8rbfi0nzqxzsz";
  };

  nativeBuildInputs = [ autoconf automake libtool ];

  preConfigure = "./bootstrap";

  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;
  };
}