mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
6602f49495
This reverts commit 741bf840da
.
This reverts the fallout from reverting the major changes.
36 lines
769 B
Nix
36 lines
769 B
Nix
{ stdenv, fetchurl, pkgs, jack ? pkgs.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";
|
|
};
|
|
|
|
buildInputs = [
|
|
pkgs.pkgconfig
|
|
pkgs.scons
|
|
pkgs.kde4.qt4
|
|
pkgs.lash
|
|
jack
|
|
];
|
|
|
|
buildPhase = ''
|
|
scons
|
|
'';
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp jackmix/jackmix $out/bin
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|
|
|
|
|