mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
25 lines
664 B
Nix
25 lines
664 B
Nix
{ stdenv, fetchurl, qt4, alsaLib, jackaudio, dbus }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.3.10";
|
|
name = "qjackctl-${version}";
|
|
|
|
# some dependencies such as killall have to be installed additionally
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/qjackctl/${name}.tar.gz";
|
|
sha256 = "0ch14y3p0x5ss28cpnqcxp42zb2w07d3l1n2sbrkgiz58iy97paw";
|
|
};
|
|
|
|
buildInputs = [ qt4 alsaLib jackaudio dbus ];
|
|
|
|
configureFlags = "--enable-jack-version";
|
|
|
|
meta = {
|
|
description = "A Qt application to control the JACK sound server daemon";
|
|
homepage = http://qjackctl.sourceforge.net/;
|
|
license = "GPL";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|