bfbfe941ab
Lots of packages can use it. Here is the list: - jackmix - klick - mixx - nova-filters - rhvoice - giv - mypaint - swift-im - bombono - mapnik - serf - nuitka - pyexiv2 - godot - hammer - toluapp - btanks - dxx-rebirth - endless-sky - globulation - the-powder-toy - fceux - gpsd - mongodb - rippled - mariadb - lprof
32 lines
788 B
Nix
32 lines
788 B
Nix
{ stdenv, fetchurl, pkgconfig, scons, qt4, lash, libjack2, jack ? libjack2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "jackmix-0.5.2";
|
|
src = fetchurl {
|
|
url = https://github.com/kampfschlaefer/jackmix/archive/v0.5.2.tar.gz;
|
|
sha256 = "18f5v7g66mgarhs476frvayhch7fy4nyjf2xivixc061ipn0m82j";
|
|
};
|
|
|
|
patches = [ ./no_error.patch ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [
|
|
scons
|
|
qt4
|
|
lash
|
|
jack
|
|
];
|
|
|
|
installPhase = ''
|
|
install -D jackmix/jackmix $out/bin/jackmix
|
|
'';
|
|
|
|
meta = {
|
|
description = "Matrix-Mixer for the Jack-Audio-connection-Kit";
|
|
homepage = http://www.arnoldarts.de/jackmix/;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
maintainers = [ stdenv.lib.maintainers.kampfschlaefer ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|