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

44 lines
1.2 KiB
Nix
Raw Normal View History

2017-05-17 20:26:11 +01:00
{ mkDerivation, lib, fetchFromGitHub, cmake, pkgconfig
, qtbase, qtmultimedia, qtsvg
2018-01-06 13:42:33 +00:00
, libvncserver, libvirt, pcre, pixman, qtermwidget, spice_gtk, spice_protocol
2017-03-09 10:24:00 +00:00
}:
2017-05-17 20:26:11 +01:00
mkDerivation rec {
2017-03-09 10:24:00 +00:00
name = "virt-manager-qt-${version}";
2018-01-06 13:42:33 +00:00
version = "0.48.79";
2017-03-09 10:24:00 +00:00
src = fetchFromGitHub {
owner = "F1ash";
repo = "qt-virt-manager";
rev = "${version}";
2018-01-06 13:42:33 +00:00
sha256 = "1mzncca9blc742vb77gyfza0sd1rby3qy5yl4x19nkllid92jn6k";
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-01-06 13:42:33 +00:00
qtbase qtmultimedia qtsvg
libvirt libvncserver pcre pixman qtermwidget spice_gtk spice_protocol
2017-03-09 10:24:00 +00:00
];
2017-05-17 20:26:11 +01:00
nativeBuildInputs = [ cmake pkgconfig ];
2017-03-09 10:24:00 +00:00
2017-11-02 05:46:43 +00:00
enableParallelBuilding = true;
2017-05-17 20:26:11 +01: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
};
}