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

43 lines
1.2 KiB
Nix
Raw Normal View History

2017-05-17 21:26:11 +02:00
{ mkDerivation, lib, fetchFromGitHub, cmake, pkgconfig
, qtbase, qtmultimedia, qtsvg
2017-11-02 06:46:43 +01:00
, lxqt, libvncserver, libvirt, pcre, pixman, spice_gtk, spice_protocol
2017-03-09 11:24:00 +01:00
}:
2017-05-17 21:26:11 +02:00
mkDerivation rec {
2017-03-09 11:24:00 +01:00
name = "virt-manager-qt-${version}";
2017-11-02 06:46:43 +01:00
version = "0.45.75";
2017-03-09 11:24:00 +01:00
src = fetchFromGitHub {
owner = "F1ash";
repo = "qt-virt-manager";
rev = "${version}";
2017-11-02 06:46:43 +01:00
sha256 = "1s59g7kkz8481y8yyf89f549xwbg1978zj9ds61iy94mwz80b38n";
2017-03-09 11:24:00 +01:00
};
cmakeFlags = [
"-DBUILD_QT_VERSION=5"
];
buildInputs = [
# virt-manager-qt currently does not compile with qtermwidget-0.8.0
qtbase qtmultimedia qtsvg lxqt.qtermwidget_0_7_1
2017-03-09 11:24:00 +01:00
libvirt libvncserver pixman spice_gtk spice_protocol
];
2017-05-17 21:26:11 +02:00
nativeBuildInputs = [ cmake pkgconfig ];
2017-03-09 11:24:00 +01:00
2017-11-02 06:46:43 +01:00
enableParallelBuilding = true;
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 ];
};
}