2022-09-14 18:05:37 +00:00
|
|
|
{ stdenv, lib, fetchFromGitea, autoconf, automake, libtool }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "soundtouch";
|
2024-04-21 15:54:59 +00:00
|
|
|
version = "2.3.3";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-09-14 18:05:37 +00:00
|
|
|
src = fetchFromGitea {
|
|
|
|
domain = "codeberg.org";
|
|
|
|
owner = "soundtouch";
|
|
|
|
repo = "soundtouch";
|
2020-04-24 23:36:52 +00:00
|
|
|
rev = version;
|
2024-04-21 15:54:59 +00:00
|
|
|
sha256 = "sha256-imeeTj+3gXxoGTuC/13+BAplwcnQ0wRJdSVt7MPlBxc=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoconf automake libtool ];
|
|
|
|
|
|
|
|
preConfigure = "./bootstrap";
|
|
|
|
|
2020-11-12 23:50:31 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A program and library for changing the tempo, pitch and playback rate of audio";
|
2020-11-12 23:50:31 +00:00
|
|
|
homepage = "https://www.surina.net/soundtouch/";
|
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
maintainers = with maintainers; [ orivej ];
|
2022-05-18 14:49:53 +00:00
|
|
|
mainProgram = "soundstretch";
|
|
|
|
platforms = platforms.all;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|