From 452b32ea6f85fd6dba1361d28628fa7c8fd397ad Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Mon, 13 Mar 2023 23:26:26 -0300 Subject: [PATCH] tap-plugins: 1.0.1 -> unstable-2020-12-09 --- .../audio/tap-plugins/default.nix | 46 +++++++++++-------- 1 file changed, 27 insertions(+), 19 deletions(-) diff --git a/pkgs/applications/audio/tap-plugins/default.nix b/pkgs/applications/audio/tap-plugins/default.nix index 9b6f4efe1661..109656d1aadc 100644 --- a/pkgs/applications/audio/tap-plugins/default.nix +++ b/pkgs/applications/audio/tap-plugins/default.nix @@ -1,32 +1,40 @@ -{ lib, stdenv, ladspa-sdk, pkgs, ... }: +{ lib +, stdenv +, fetchFromGitHub +, ladspa-sdk +}: -stdenv.mkDerivation rec { +stdenv.mkDerivation (self: { pname = "tap-plugins"; - version = "1.0.1"; + version = "unstable-2020-12-09"; - src = pkgs.fetchFromGitHub { - owner = "tomszilagyi"; - repo = pname; - rev = "v${version}"; - sha256 = "0c6qhyf8smlypc36vmpr42dm3mrzk6pg9cc9r0vx22qbrd5zfpjw"; + src = fetchFromGitHub { + owner = "tomscii"; + repo = "tap-plugins"; + rev = "5d882799f37dffe37fc73451f2c5b4fb24316f3b"; + hash = "sha256-bwybMxIAbOzPr43QGshjbnRK5GdziGiYDsTutZdSj4s="; }; - buildInputs = [ ladspa-sdk ]; + buildInputs = [ + ladspa-sdk + ]; - preInstall = '' + postPatch = '' substituteInPlace Makefile --replace /usr/local "$out" ''; - meta = with lib; { + 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. + 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. ''; - homepage = "https://tap-plugins.sourceforge.net/ladspa.html"; - license = licenses.gpl3; - maintainers = [ maintainers.fps ]; + license = lib.licenses.gpl3Plus; + maintainers = [ ]; }; -} +})