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

44 lines
1.3 KiB
Nix
Raw Normal View History

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
, libvncserver, libvirt, pcre, pixman, qtermwidget, spice-gtk, spice-protocol
2018-12-25 23:13:14 +00:00
, libselinux, libsepol, utillinux
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-12-25 23:13:14 +00:00
version = "0.70.91";
2017-03-09 10:24:00 +00:00
src = fetchFromGitHub {
owner = "F1ash";
repo = "qt-virt-manager";
rev = "${version}";
2018-12-25 23:13:14 +00:00
sha256 = "1z2kq88lljvr24z1kizvg3h7ckf545h4kjhhrjggkr0w4wjjwr43";
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
libvirt libvncserver pcre pixman qtermwidget spice-gtk spice-protocol
2018-12-25 23:13:14 +00:00
libselinux libsepol utillinux
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
};
}