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
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
ladspa-sdk,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "tap-plugins";
|
|
version = "0-unstable-2020-12-09";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tomscii";
|
|
repo = "tap-plugins";
|
|
rev = "5d882799f37dffe37fc73451f2c5b4fb24316f3b";
|
|
hash = "sha256-bwybMxIAbOzPr43QGshjbnRK5GdziGiYDsTutZdSj4s=";
|
|
};
|
|
|
|
buildInputs = [
|
|
ladspa-sdk
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace Makefile --replace /usr/local "$out"
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://tomscii.sig7.se/tap-plugins/";
|
|
description = "Tom's Audio Processing plugins";
|
|
longDescription = ''
|
|
A number of LADSPA plugins including: TAP AutoPanner, TAP Chorus/Flanger,
|
|
TAP DeEsser, TAP Dynamics (Mono & Stereo), TAP Equalizer and TAP
|
|
Equalizer/BW, TAP Fractal Doubler, TAP Pink/Fractal Noise, TAP Pitch
|
|
Shifter, TAP Reflector, TAP Reverberator, TAP Rotary Speaker, TAP Scaling
|
|
Limiter, TAP Sigmoid Booster, TAP Stereo Echo, TAP Tremolo, TAP
|
|
TubeWarmth, TAP Vibrato.
|
|
'';
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = [ ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|