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
29 lines
No EOL
848 B
Nix
29 lines
No EOL
848 B
Nix
{ stdenv, fetchurl, alsaLib, jack2, pkgconfig, pulseaudio, xlibs }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "bristol-${version}";
|
|
version = "0.60.11";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/bristol/${name}.tar.gz";
|
|
sha256 = "1fi2m4gmvxdi260821y09lxsimq82yv4k5bbgk3kyc3x1nyhn7vx";
|
|
};
|
|
|
|
buildInputs = [
|
|
alsaLib jack2 pkgconfig pulseaudio xlibs.libX11 xlibs.libXext
|
|
xlibs.xproto
|
|
];
|
|
|
|
preInstall = ''
|
|
sed -e "s@\`which bristol\`@$out/bin/bristol@g" -i bin/startBristol
|
|
sed -e "s@\`which brighton\`@$out/bin/brighton@g" -i bin/startBristol
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A range of synthesiser, electric piano and organ emulations";
|
|
homepage = http://bristol.sourceforge.net;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
} |