2021-06-10 03:57:09 +01:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, libjack2, ladspaH, gtk2, alsa-lib, libxml2, lrdf }:
|
2013-03-09 14:02:35 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "jack-rack-1.4.7";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/jack-rack/${name}.tar.bz2";
|
|
|
|
sha256 = "1lmibx9gicagcpcisacj6qhq6i08lkl5x8szysjqvbgpxl9qg045";
|
|
|
|
};
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2021-06-10 03:57:09 +01:00
|
|
|
buildInputs = [ libjack2 ladspaH gtk2 alsa-lib libxml2 lrdf ];
|
2019-10-30 02:23:29 +00:00
|
|
|
NIX_LDFLAGS = "-ldl -lm -lpthread";
|
2013-03-09 14:02:35 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://jack-rack.sourceforge.net/";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
maintainers = [ lib.maintainers.astsmtl ];
|
|
|
|
platforms = lib.platforms.linux;
|
2013-03-09 14:02:35 +00:00
|
|
|
};
|
|
|
|
}
|