Merge pull request #90580 from fps/add-tap-plugins
tap-plugins: init at 1.0.1
This commit is contained in:
commit
769a4a83e6
32
pkgs/applications/audio/tap-plugins/default.nix
Normal file
32
pkgs/applications/audio/tap-plugins/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ stdenv, fetchurl, ladspa-sdk, pkgs, ... }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "tap-plugins";
|
||||||
|
version = "1.0.1";
|
||||||
|
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "tomszilagyi";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0c6qhyf8smlypc36vmpr42dm3mrzk6pg9cc9r0vx22qbrd5zfpjw";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ ladspa-sdk ];
|
||||||
|
|
||||||
|
preInstall = ''
|
||||||
|
substituteInPlace Makefile --replace /usr/local "$out"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
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.
|
||||||
|
'';
|
||||||
|
homepage = "http://tap-plugins.sourceforge.net/ladspa.html";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = [ maintainers.fps ];
|
||||||
|
};
|
||||||
|
}
|
@ -24746,6 +24746,8 @@ in
|
|||||||
|
|
||||||
taskell = haskell.lib.justStaticExecutables haskellPackages.taskell;
|
taskell = haskell.lib.justStaticExecutables haskellPackages.taskell;
|
||||||
|
|
||||||
|
tap-plugins = callPackage ../applications/audio/tap-plugins { };
|
||||||
|
|
||||||
taskjuggler = callPackage ../applications/misc/taskjuggler { };
|
taskjuggler = callPackage ../applications/misc/taskjuggler { };
|
||||||
|
|
||||||
tabula = callPackage ../applications/misc/tabula { };
|
tabula = callPackage ../applications/misc/tabula { };
|
||||||
|
Loading…
Reference in New Issue
Block a user