summary refs log tree commit diff
path: root/pkgs/applications/audio/swh-lv2/default.nix
blob: 02499d54476f10592b465ddda8e37fbd329a8a25 (plain) (blame)
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
{ stdenv, fetchurl, fftwSinglePrec, libxslt, lv2, pkgconfig }:

stdenv.mkDerivation rec {
  pname = "swh-lv2";
  version = "1.0.16";

  src = fetchurl {
    url = "https://github.com/swh/lv2/archive/v${version}.tar.gz";
    sha256 = "0j1mih0lp4fds07knp5i32in515sh0df1qi6694pmyz2wqnm295w";
  };

  patchPhase = ''
    sed -e "s#xsltproc#${libxslt.bin}/bin/xsltproc#" -i Makefile
    sed -e "s#PREFIX = /usr/local#PREFIX = $out#" -i Makefile
  '';

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ fftwSinglePrec lv2 ];

  installPhase = "make install-system";

  meta = with stdenv.lib; {
    homepage = "http://plugin.org.uk";
    description = "LV2 version of Steve Harris' SWH plugins";
    longDescription = ''
      SWH plugins include:
      amp, fast overdrive, overdrive (with colourisation), comb
      filter, waveshaper, ringmod, divider, diode, decliper, pitch
      scaler, 16 band equaliser, sinus wavewrapper, hermes filter,
      chorus, flanger, decimater, oscillator, gverb, phasers, harmonic
      generators, surround encoders and more.
    '';
    license = licenses.gpl3;
    maintainers = [ maintainers.goibhniu ];
    platforms = platforms.linux;
  };
}