mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
f6f2f38a6e
Currently, we have a 'jack' package with attrname 'jack1d' and a 'jackdbus' package with attrname 'jackaudio'. Make it consistent 'jack1' and 'jack2' in both package name and attrname. This aligns the naming with what can be found on the JACK homepage. Q: what's the difference between jack1 and jack2? A: http://trac.jackaudio.org/wiki/Q_differenc_jack1_jack2
25 lines
781 B
Nix
25 lines
781 B
Nix
{ stdenv, fetchurl, alsaLib, alsaUtils, fltk, jack2, libXft,
|
|
libXpm, libjpeg, libpng, libsamplerate, libsndfile, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "rakarrack-${version}";
|
|
version = "0.6.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/rakarrack/${name}.tar.bz2";
|
|
sha256 = "1rpf63pdn54c4yg13k7cb1w1c7zsvl97c4qxcpz41c8l91xd55kn";
|
|
};
|
|
|
|
patches = [ ./fltk-path.patch ];
|
|
|
|
buildInputs = [ alsaLib alsaUtils fltk jack2 libXft libXpm libjpeg
|
|
libpng libsamplerate libsndfile zlib ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "multi-effects processor emulating a guitar effects pedalboard";
|
|
homepage = http://rakarrack.sourceforge.net;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|