nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / by-name / ca / caps / package.nix
blob4c58ee2c316cb56bddf0fca2d29e0df7eee80895
2   lib,
3   stdenv,
4   fetchurl,
5 }:
6 stdenv.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   };
14   configurePhase = ''
15     echo "PREFIX = $out" > defines.make
16   '';
18   meta = {
19     description = "Selection of LADSPA plugins implementing classic effects";
20     longDescription = ''
21       The C* Audio Plugin Suite is a selection of classic effects,
22       unique filters and signal generators.  The digital guitarist
23       finds in CAPS a range of processors recreating key aspects of
24       the formation of tone in traditional electronic instrument
25       amplification.  Beyond sound quality, central design
26       considerations are latency-free realtime operation, modesty of
27       resource demands and meaningful control interfaces.
28     '';
29     homepage = "http://www.quitte.de/dsp/caps.html";
30     license = lib.licenses.gpl3;
31     maintainers = [ lib.maintainers.astsmtl ];
32     platforms = lib.platforms.linux;
33   };