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