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
32 lines
893 B
Nix
32 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 ];
|
|
};
|
|
}
|