nixpkgs/pkgs/applications/virtualization/virt-manager/qt.nix

44 lines
1.3 KiB
Nix
Raw Normal View History

2017-05-17 21:26:11 +02:00
{ mkDerivation, lib, fetchFromGitHub, cmake, pkgconfig
2018-04-17 16:10:48 +02:00
, qtbase, qtmultimedia, qtsvg, qttools, krdc
, libvncserver, libvirt, pcre, pixman, qtermwidget, spice-gtk, spice-protocol
2018-12-26 00:13:14 +01:00
, libselinux, libsepol, utillinux
2017-03-09 11:24:00 +01:00
}:
2017-05-17 21:26:11 +02:00
mkDerivation rec {
pname = "virt-manager-qt";
2018-12-26 00:13:14 +01:00
version = "0.70.91";
2017-03-09 11:24:00 +01:00
src = fetchFromGitHub {
owner = "F1ash";
repo = "qt-virt-manager";
2019-09-09 01:38:31 +02:00
rev = version;
2018-12-26 00:13:14 +01:00
sha256 = "1z2kq88lljvr24z1kizvg3h7ckf545h4kjhhrjggkr0w4wjjwr43";
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-04-17 16:10:48 +02:00
qtbase qtmultimedia qtsvg krdc
libvirt libvncserver pcre pixman qtermwidget spice-gtk spice-protocol
2018-12-26 00:13:14 +01:00
libselinux libsepol utillinux
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-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
};
}