virt-manager: needs file for building translations

This commit is contained in:
Franz Pletz 2017-03-25 14:57:45 +01:00
parent 1cca97cf18
commit 160fd7231e
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, python2Packages, intltool, curl
{ stdenv, fetchurl, python2Packages, intltool, curl, file
, wrapGAppsHook, virtinst, gtkvnc, vte
, gtk3, gobjectIntrospection, libvirt-glib, gsettings_desktop_schemas, glib
, avahi, dconf, spiceSupport ? true, spice_gtk, libosinfo, gnome3, system-libvirt
@ -27,7 +27,7 @@ buildPythonApplication rec {
wrapGAppsHook
] ++ optional spiceSupport spice_gtk;
buildInputs = [ dconf avahi intltool ];
buildInputs = [ dconf avahi intltool file ];
patchPhase = ''
sed -i 's|/usr/share/libvirt/cpu_map.xml|${system-libvirt}/share/libvirt/cpu_map.xml|g' virtinst/capabilities.py
@ -54,6 +54,6 @@ buildPythonApplication rec {
manages Xen and LXC (linux containers).
'';
license = licenses.gpl2;
maintainers = with maintainers; [qknight offline];
maintainers = with maintainers; [ qknight offline fpletz ];
};
}