2017-05-17 19:26:11 +00:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, cmake, pkgconfig
|
2018-04-17 14:10:48 +00:00
|
|
|
, qtbase, qtmultimedia, qtsvg, qttools, krdc
|
2018-02-25 02:23:58 +00:00
|
|
|
, libvncserver, libvirt, pcre, pixman, qtermwidget, spice-gtk, spice-protocol
|
2017-03-09 10:24:00 +00:00
|
|
|
}:
|
|
|
|
|
2017-05-17 19:26:11 +00:00
|
|
|
mkDerivation rec {
|
2017-03-09 10:24:00 +00:00
|
|
|
name = "virt-manager-qt-${version}";
|
2018-04-17 14:10:48 +00:00
|
|
|
version = "0.60.88";
|
2017-03-09 10:24:00 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "F1ash";
|
|
|
|
repo = "qt-virt-manager";
|
|
|
|
rev = "${version}";
|
2018-04-17 14:10:48 +00:00
|
|
|
sha256 = "0hd5d8zdghc5clv8pa4h9zigshdrarfpmzyvrq56rjkm13lrdz52";
|
2017-03-09 10:24:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DBUILD_QT_VERSION=5"
|
2018-01-06 13:42:33 +00:00
|
|
|
"-DQTERMWIDGET_INCLUDE_DIRS=${qtermwidget}/include/qtermwidget5"
|
2017-03-09 10:24:00 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2018-04-17 14:10:48 +00:00
|
|
|
qtbase qtmultimedia qtsvg krdc
|
2018-02-25 02:23:58 +00:00
|
|
|
libvirt libvncserver pcre pixman qtermwidget spice-gtk spice-protocol
|
2017-03-09 10:24:00 +00:00
|
|
|
];
|
|
|
|
|
2018-02-23 05:18:52 +00:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig qttools ];
|
2017-03-09 10:24:00 +00:00
|
|
|
|
2017-05-17 19:26:11 +00:00
|
|
|
meta = with lib; {
|
2017-11-02 05:46:43 +00:00
|
|
|
homepage = https://f1ash.github.io/qt-virt-manager;
|
2017-03-09 10:24:00 +00:00
|
|
|
description = "Desktop user interface for managing virtual machines (QT)";
|
|
|
|
longDescription = ''
|
|
|
|
The virt-manager application is a desktop user interface for managing
|
|
|
|
virtual machines through libvirt. It primarily targets KVM VMs, but also
|
|
|
|
manages Xen and LXC (linux containers).
|
|
|
|
'';
|
2017-11-02 05:46:43 +00:00
|
|
|
license = licenses.gpl2;
|
2017-03-09 10:24:00 +00:00
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
2018-01-06 13:42:33 +00:00
|
|
|
inherit (qtbase.meta) platforms;
|
2017-03-09 10:24:00 +00:00
|
|
|
};
|
|
|
|
}
|