mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
tap-plugins: init at 1.0.1
This commit is contained in:
parent
f71e439688
commit
5e0cf323e7
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 ];
|
||||
};
|
||||
}
|
@ -24344,6 +24344,8 @@ in
|
||||
|
||||
taskell = haskell.lib.justStaticExecutables haskellPackages.taskell;
|
||||
|
||||
tap-plugins = callPackage ../applications/audio/tap-plugins { };
|
||||
|
||||
taskjuggler = callPackage ../applications/misc/taskjuggler { };
|
||||
|
||||
tabula = callPackage ../applications/misc/tabula { };
|
||||
|
Loading…
Reference in New Issue
Block a user