2017-05-17 21:26:11 +02:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, cmake, pkgconfig
|
2018-02-23 06:18:52 +01:00
|
|
|
, qtbase, qtmultimedia, qtsvg, qttools
|
2018-02-25 03:23:58 +01:00
|
|
|
, libvncserver, libvirt, pcre, pixman, qtermwidget, spice-gtk, spice-protocol
|
2017-03-09 11:24:00 +01:00
|
|
|
}:
|
|
|
|
|
2017-05-17 21:26:11 +02:00
|
|
|
mkDerivation rec {
|
2017-03-09 11:24:00 +01:00
|
|
|
name = "virt-manager-qt-${version}";
|
2018-02-23 06:18:52 +01:00
|
|
|
version = "0.52.80";
|
2017-03-09 11:24:00 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "F1ash";
|
|
|
|
repo = "qt-virt-manager";
|
|
|
|
rev = "${version}";
|
2018-02-23 06:18:52 +01:00
|
|
|
sha256 = "131rs6c90vdf1j40qj7k6s939y8la9ma0q3labxb7ac3r8hvhn6a";
|
2017-03-09 11:24:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DBUILD_QT_VERSION=5"
|
2018-01-06 14:42:33 +01:00
|
|
|
"-DQTERMWIDGET_INCLUDE_DIRS=${qtermwidget}/include/qtermwidget5"
|
2017-03-09 11:24:00 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2018-01-06 14:42:33 +01:00
|
|
|
qtbase qtmultimedia qtsvg
|
2018-02-25 03:23:58 +01:00
|
|
|
libvirt libvncserver pcre pixman qtermwidget spice-gtk spice-protocol
|
2017-03-09 11:24:00 +01:00
|
|
|
];
|
|
|
|
|
2018-02-23 06:18:52 +01:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig qttools ];
|
2017-03-09 11:24:00 +01:00
|
|
|
|
2017-11-02 06:46:43 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-05-17 21:26:11 +02:00
|
|
|
meta = with lib; {
|
2017-11-02 06:46:43 +01:00
|
|
|
homepage = https://f1ash.github.io/qt-virt-manager;
|
2017-03-09 11:24:00 +01: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 06:46:43 +01:00
|
|
|
license = licenses.gpl2;
|
2017-03-09 11:24:00 +01:00
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
2018-01-06 14:42:33 +01:00
|
|
|
inherit (qtbase.meta) platforms;
|
2017-03-09 11:24:00 +01:00
|
|
|
};
|
|
|
|
}
|