d4d56f161b
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/qjackctl/versions (cherry picked from commit c4afebe8755c690332b2b48491525cb9d93fa534)
34 lines
850 B
Nix
34 lines
850 B
Nix
{ stdenv, fetchurl, pkgconfig, alsaLib, libjack2, dbus, qtbase, qttools, qtx11extras }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.5.6";
|
|
name = "qjackctl-${version}";
|
|
|
|
# some dependencies such as killall have to be installed additionally
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/qjackctl/${name}.tar.gz";
|
|
sha256 = "0wlmbb9m7cf3wr7c2h2hji18592x2b119m7mx85wksjs6rjaq2mj";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|