mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
added qjackctl
svn path=/nixpkgs/trunk/; revision=12650
This commit is contained in:
parent
ba6c703918
commit
9a0fc0863b
20
pkgs/applications/audio/qjackctl/default.nix
Normal file
20
pkgs/applications/audio/qjackctl/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user