3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/virtualization/virt-manager/qt.nix

52 lines
1.6 KiB
Nix
Raw Normal View History

{ mkDerivation, lib, fetchFromGitHub, fetchpatch, cmake, pkg-config
2018-04-17 15:10:48 +01: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 20:26:11 +01:00
mkDerivation rec {
pname = "virt-manager-qt";
version = "0.72.97";
2017-03-09 10:24:00 +00:00
src = fetchFromGitHub {
owner = "F1ash";
repo = "qt-virt-manager";
2019-09-09 00:38:31 +01:00
rev = version;
sha256 = "0b2bx7ah35glcsiv186sc9cqdrkhg1vs9jz036k9byk61np0cb1i";
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 {
# drop with next update
url = "https://github.com/F1ash/qt-virt-manager/commit/0d338b037ef58c376d468c1cd4521a34ea181edd.patch";
sha256 = "1wjqyc5wsnxfwwjzgqjr9hcqhd867amwhjd712qyvpvz8x7p2s24";
})
];
2017-03-09 10:24:00 +00:00
buildInputs = [
2018-04-17 15:10:48 +01: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 20:26:11 +01: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
};
}