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
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
fftwSinglePrec,
|
|
libxslt,
|
|
lv2,
|
|
pkg-config,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "swh-lv2";
|
|
version = "1.0.16";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "swh";
|
|
repo = "lv2";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-v6aJUWDbBZEmz0v6+cSCi/KhOYNUeK/MJLUSgzi39ng=";
|
|
};
|
|
|
|
patchPhase = ''
|
|
sed -e "s#xsltproc#${libxslt.bin}/bin/xsltproc#" -i Makefile
|
|
sed -e "s#PREFIX = /usr/local#PREFIX = $out#" -i Makefile
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [
|
|
fftwSinglePrec
|
|
lv2
|
|
];
|
|
|
|
installPhase = "make install-system";
|
|
|
|
meta = with lib; {
|
|
homepage = "http://plugin.org.uk";
|
|
description = "LV2 version of Steve Harris' SWH plugins";
|
|
longDescription = ''
|
|
SWH plugins include:
|
|
amp, fast overdrive, overdrive (with colourisation), comb
|
|
filter, waveshaper, ringmod, divider, diode, decliper, pitch
|
|
scaler, 16 band equaliser, sinus wavewrapper, hermes filter,
|
|
chorus, flanger, decimater, oscillator, gverb, phasers, harmonic
|
|
generators, surround encoders and more.
|
|
'';
|
|
license = licenses.gpl3;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|