Files
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

54 lines
941 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
autoconf,
automake,
pkg-config,
fftwFloat,
libjack2,
libsigcxx,
libxml2,
wxGTK,
}:
stdenv.mkDerivation {
pname = "freqtweak";
version = "unstable-2019-08-03";
src = fetchFromGitHub {
owner = "essej";
repo = "freqtweak";
rev = "d4205337558d36657a4ee6b3afb29358aa18c0fd";
sha256 = "10cq27mdgrrc54a40al9ahi0wqd0p2c1wxbdg518q8pzfxaxs5fi";
};
nativeBuildInputs = [
autoconf
automake
pkg-config
];
buildInputs = [
fftwFloat
libjack2
libsigcxx
libxml2
wxGTK
];
preConfigure = ''
sh autogen.sh
'';
enableParallelBuilding = true;
meta = with lib; {
homepage = "http://essej.net/freqtweak/";
description = "Realtime audio frequency spectral manipulation";
maintainers = [ maintainers.magnetophon ];
platforms = platforms.linux;
license = licenses.gpl2Plus;
mainProgram = "freqtweak";
};
}