nixpkgs/pkgs/applications/audio/qjackctl/default.nix

35 lines
850 B
Nix
Raw Normal View History

2017-02-28 15:29:45 +00:00
{ stdenv, fetchurl, pkgconfig, alsaLib, libjack2, dbus, qtbase, qttools, qtx11extras }:
stdenv.mkDerivation rec {
2017-12-19 07:53:23 +00:00
version = "0.5.0";
name = "qjackctl-${version}";
# some dependencies such as killall have to be installed additionally
src = fetchurl {
url = "mirror://sourceforge/qjackctl/${name}.tar.gz";
2017-12-19 07:53:23 +00:00
sha256 = "0lx81dfwanc10vrny1vzi0wx73ph82dlz99ffjzsigj3cqzz6x4s";
};
2016-11-01 18:48:10 +00:00
buildInputs = [
2017-02-03 15:19:44 +00:00
qtbase
qtx11extras
qttools
2016-11-01 18:48:10 +00:00
alsaLib
2016-05-04 21:49:16 +00:00
libjack2
2016-11-01 18:48:10 +00:00
dbus
2016-05-04 21:49:16 +00:00
];
2017-02-28 15:29:45 +00:00
nativeBuildInputs = [ pkgconfig ];
2017-02-03 15:19:44 +00:00
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;
};
}