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
33 lines
893 B
Nix
33 lines
893 B
Nix
{ stdenv, fetchurl, alsaLib, freetype, ftgl, jack2, libX11, lv2
|
|
, mesa, pkgconfig, ttf_bitstream_vera
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "setbfree-${version}";
|
|
version = "0.7.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/pantherb/setBfree/archive/v${version}.tar.gz";
|
|
sha256 = "1chlmgwricc6l4kyg35vc9v8f1n8psr28iihn4a9q2prj1ihqcbc";
|
|
};
|
|
|
|
patchPhase = ''
|
|
sed 's#/usr/local#$(out)#g' -i common.mak
|
|
sed 's#/usr/share/fonts/truetype/ttf-bitstream-vera#${ttf_bitstream_vera}/share/fonts/truetype#g' \
|
|
-i b_synth/Makefile
|
|
'';
|
|
|
|
buildInputs = [
|
|
alsaLib freetype ftgl jack2 libX11 lv2 mesa pkgconfig
|
|
ttf_bitstream_vera
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A DSP tonewheel organ emulator";
|
|
homepage = http://setbfree.org;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|