nixpkgs/pkgs/development/libraries/soundtouch/default.nix

25 lines
620 B
Nix
Raw Normal View History

2019-07-07 08:07:57 +02:00
{stdenv, lib, fetchFromGitLab, autoconf, automake, libtool}:
2014-12-09 10:15:30 +01:00
stdenv.mkDerivation rec {
2019-07-07 08:07:57 +02:00
pname = "soundtouch";
version = "2.1.2";
src = fetchFromGitLab {
owner = pname;
repo = pname;
rev = version;
sha256 = "174wgm3s0inmbnkrlnspxjwm2014qhjhkbdqa5r8rbfi0nzqxzsz";
2014-12-09 10:15:30 +01:00
};
2019-07-07 08:07:57 +02:00
nativeBuildInputs = [ autoconf automake libtool ];
2014-12-09 10:15:30 +01:00
preConfigure = "./bootstrap";
2014-12-09 10:15:30 +01:00
2019-07-07 08:07:57 +02:00
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;
2014-12-09 10:15:30 +01:00
};
}