added qjackctl

svn path=/nixpkgs/trunk/; revision=12650
This commit is contained in:
Marc Weber 2008-08-18 16:03:21 +00:00
parent ba6c703918
commit 9a0fc0863b
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,20 @@
args:
args.stdenv.mkDerivation {
# some dependencies such as killall have to be installed additionally
name = "qjackctl-0.3.3";
src = args.fetchurl {
url = http://downloads.sourceforge.net/qjackctl/qjackctl-0.3.3.tar.gz;
sha256 = "1z9v208fs79ka6ni3p5v5xb0k5y1wqqm2a9cf903387b9p3fhpxj";
};
buildInputs =(with args; [qt4 alsaLib jackaudio]);
meta = {
description = "qt jackd control gui tool";
homepage = http://qjackctl.sourceforge.net/;
license = "GPL";
};
}

View File

@ -6143,6 +6143,11 @@ let pkgs = rec {
qt = qt3;
};
qjackctl = import ../applications/audio/qjackctl {
inherit fetchurl stdenv alsaLib jackaudio;
qt4 = qt4;
};
gkrellm = import ../applications/misc/gkrellm {
inherit fetchurl stdenv gettext pkgconfig;
inherit (gtkLibs) glib gtk;