1{
2 lib,
3 stdenv,
4 fetchurl,
5}:
6stdenv.mkDerivation rec {
7 pname = "caps";
8 version = "0.9.26";
9 src = fetchurl {
10 url = "http://www.quitte.de/dsp/caps_${version}.tar.bz2";
11 sha256 = "1jcq9y51vdnk93q27r566y9qmddvadhr4ddnvkiypaq5rrdnqjg7";
12 };
13
14 configurePhase = ''
15 runHook preConfigure
16
17 echo "PREFIX = $out" > defines.make
18
19 runHook postConfigure
20 '';
21
22 meta = {
23 description = "Selection of LADSPA plugins implementing classic effects";
24 longDescription = ''
25 The C* Audio Plugin Suite is a selection of classic effects,
26 unique filters and signal generators. The digital guitarist
27 finds in CAPS a range of processors recreating key aspects of
28 the formation of tone in traditional electronic instrument
29 amplification. Beyond sound quality, central design
30 considerations are latency-free realtime operation, modesty of
31 resource demands and meaningful control interfaces.
32 '';
33 homepage = "http://www.quitte.de/dsp/caps.html";
34 license = lib.licenses.gpl3;
35 platforms = lib.platforms.linux;
36 };
37}