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

53 lines
1.7 KiB
Nix
Raw Normal View History

{ mkDerivation, lib, fetchFromGitHub, fetchpatch, cmake, pkg-config
2018-04-17 14:10:48 +00:00
, qtbase, qtmultimedia, qtsvg, qttools, krdc
, libvncserver, libvirt, pcre, pixman, qtermwidget, spice-gtk, spice-protocol
2020-11-24 15:29:28 +00:00
, libselinux, libsepol, util-linux
2017-03-09 10:24:00 +00:00
}:
2017-05-17 19:26:11 +00:00
mkDerivation rec {
pname = "virt-manager-qt";
2020-08-18 04:12:12 +00:00
version = "0.71.95";
2017-03-09 10:24:00 +00:00
src = fetchFromGitHub {
owner = "F1ash";
repo = "qt-virt-manager";
2019-09-08 23:38:31 +00:00
rev = version;
2020-08-18 04:12:12 +00:00
sha256 = "1s8753bzsjyixpv1c2l9d1xjcn8i47k45qj7pr50prc64ldf5f47";
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
];
patches = [
(fetchpatch {
# Maintainer note: Check whether this patch is still needed when a new version is released
name = "krdc-variable-name-changes.patch";
url = "https://github.com/fadenb/qt-virt-manager/commit/4640f5f64534ed7c8a1ecc6851f1c7503988de6d.patch";
sha256 = "1chl58nra1mj96n8jmnjbsyr6vlwkhn38afhwqsbr0bgyg23781v";
})
];
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
2020-11-24 15:29:28 +00:00
libselinux libsepol util-linux
2017-03-09 10:24:00 +00:00
];
nativeBuildInputs = [ cmake pkg-config qttools ];
2017-03-09 10:24:00 +00:00
2017-05-17 19:26:11 +00:00
meta = with lib; {
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
};
}