mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
35 lines
859 B
Nix
35 lines
859 B
Nix
{ stdenv, mkDerivation, fetchurl, pkgconfig, alsaLib, libjack2, dbus, qtbase, qttools, qtx11extras }:
|
|
|
|
mkDerivation rec {
|
|
version = "0.6.1";
|
|
pname = "qjackctl";
|
|
|
|
# some dependencies such as killall have to be installed additionally
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/qjackctl/${pname}-${version}.tar.gz";
|
|
sha256 = "09y0s43ypcghnvzsz89mi1qs5bsvn4hpb98lqxmwwsy0ikcv3hny";
|
|
};
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
qtx11extras
|
|
qttools
|
|
alsaLib
|
|
libjack2
|
|
dbus
|
|
];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
configureFlags = [ "--enable-jack-version" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A Qt application to control the JACK sound server daemon";
|
|
homepage = http://qjackctl.sourceforge.net/;
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|