Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
41 lines
806 B
Nix
41 lines
806 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitea,
|
|
autoconf,
|
|
automake,
|
|
libtool,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "soundtouch";
|
|
version = "2.4.0";
|
|
|
|
src = fetchFromGitea {
|
|
domain = "codeberg.org";
|
|
owner = "soundtouch";
|
|
repo = "soundtouch";
|
|
rev = version;
|
|
hash = "sha256-7JUBAFURKtPCZrcKqL1rOLdsYMd7kGe7wY0JUl2XPvw=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoconf
|
|
automake
|
|
libtool
|
|
];
|
|
|
|
preConfigure = "./bootstrap";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Program and library for changing the tempo, pitch and playback rate of audio";
|
|
homepage = "https://www.surina.net/soundtouch/";
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = with maintainers; [ orivej ];
|
|
mainProgram = "soundstretch";
|
|
platforms = platforms.all;
|
|
};
|
|
}
|