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