62d0a320b3
This reverts commit bdb77826d9
.
Jack1 is not obsolete and neither jack1 nor jack2 is called 'jackaudio'.
Q: What's the difference between Jack1 and Jack2?
A: http://trac.jackaudio.org/wiki/Q_differenc_jack1_jack2
24 lines
924 B
Nix
24 lines
924 B
Nix
{ stdenv, fetchurl, pkgconfig, jack2, ladspaH, gtk, alsaLib, libxml2, librdf }:
|
|
stdenv.mkDerivation rec {
|
|
name = "jack-rack-1.4.7";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/jack-rack/${name}.tar.bz2";
|
|
sha256 = "1lmibx9gicagcpcisacj6qhq6i08lkl5x8szysjqvbgpxl9qg045";
|
|
};
|
|
buildInputs = [ pkgconfig jack2 ladspaH gtk alsaLib libxml2 librdf ];
|
|
|
|
meta = {
|
|
description = ''An effects "rack" for the JACK low latency audio API'';
|
|
longDescription = ''
|
|
JACK Rack is an effects "rack" for the JACK low latency audio
|
|
API. The rack can be filled with LADSPA effects plugins and can
|
|
be controlled using the ALSA sequencer. It's phat; it turns your
|
|
computer into an effects box.
|
|
'';
|
|
homepage = http://jack-rack.sourceforge.net/;
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
maintainers = [ stdenv.lib.maintainers.astsmtl ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|