summaryrefslogtreecommitdiffstats
path: root/pkgs/by-name/ta/tap-plugins/package.nix
blob: 2a2b3fa79d37e18a4b639ddb10c0ced489adbad7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
  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;
  };
})