2021-01-16 18:09:27 -08:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, fetchpatch, cmake, pkg-config
|
2018-04-17 07:10:48 -07:00
|
|
|
, qtbase, qtmultimedia, qtsvg, qttools, krdc
|
2018-02-24 18:23:58 -08:00
|
|
|
, libvncserver, libvirt, pcre, pixman, qtermwidget, spice-gtk, spice-protocol
|
2020-11-24 07:29:28 -08:00
|
|
|
, libselinux, libsepol, util-linux
|
2017-03-09 02:24:00 -08:00
|
|
|
}:
|
|
|
|
|
2017-05-17 12:26:11 -07:00
|
|
|
mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "virt-manager-qt";
|
2021-05-12 17:59:52 -07:00
|
|
|
version = "0.72.97";
|
2017-03-09 02:24:00 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "F1ash";
|
|
|
|
repo = "qt-virt-manager";
|
2019-09-08 16:38:31 -07:00
|
|
|
rev = version;
|
2021-05-12 17:59:52 -07:00
|
|
|
sha256 = "0b2bx7ah35glcsiv186sc9cqdrkhg1vs9jz036k9byk61np0cb1i";
|
2017-03-09 02:24:00 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DBUILD_QT_VERSION=5"
|
2018-01-06 05:42:33 -08:00
|
|
|
"-DQTERMWIDGET_INCLUDE_DIRS=${qtermwidget}/include/qtermwidget5"
|
2017-03-09 02:24:00 -08:00
|
|
|
];
|
|
|
|
|
2020-10-02 05:20:32 -07:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
2021-05-12 17:59:52 -07:00
|
|
|
# drop with next update
|
|
|
|
url = "https://github.com/F1ash/qt-virt-manager/commit/0d338b037ef58c376d468c1cd4521a34ea181edd.patch";
|
|
|
|
sha256 = "1wjqyc5wsnxfwwjzgqjr9hcqhd867amwhjd712qyvpvz8x7p2s24";
|
2020-10-02 05:20:32 -07:00
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2017-03-09 02:24:00 -08:00
|
|
|
buildInputs = [
|
2018-04-17 07:10:48 -07:00
|
|
|
qtbase qtmultimedia qtsvg krdc
|
2018-02-24 18:23:58 -08:00
|
|
|
libvirt libvncserver pcre pixman qtermwidget spice-gtk spice-protocol
|
2020-11-24 07:29:28 -08:00
|
|
|
libselinux libsepol util-linux
|
2017-03-09 02:24:00 -08:00
|
|
|
];
|
|
|
|
|
2021-01-16 18:09:27 -08:00
|
|
|
nativeBuildInputs = [ cmake pkg-config qttools ];
|
2017-03-09 02:24:00 -08:00
|
|
|
|
2017-05-17 12:26:11 -07:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://f1ash.github.io/qt-virt-manager";
|
2017-03-09 02:24:00 -08: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-01 22:46:43 -07:00
|
|
|
license = licenses.gpl2;
|
2017-03-09 02:24:00 -08:00
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
2018-01-06 05:42:33 -08:00
|
|
|
inherit (qtbase.meta) platforms;
|
2017-03-09 02:24:00 -08:00
|
|
|
};
|
|
|
|
}
|