tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
virt-manager: needs file for building translations
Franz Pletz
9 years ago
160fd723
1cca97cf
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
applications
virtualization
virt-manager
default.nix
+3
-3
pkgs/applications/virtualization/virt-manager/default.nix
···
1
1
-
{ stdenv, fetchurl, python2Packages, intltool, curl
1
1
+
{ stdenv, fetchurl, python2Packages, intltool, curl, file
2
2
, wrapGAppsHook, virtinst, gtkvnc, vte
3
3
, gtk3, gobjectIntrospection, libvirt-glib, gsettings_desktop_schemas, glib
4
4
, avahi, dconf, spiceSupport ? true, spice_gtk, libosinfo, gnome3, system-libvirt
···
27
27
wrapGAppsHook
28
28
] ++ optional spiceSupport spice_gtk;
29
29
30
30
-
buildInputs = [ dconf avahi intltool ];
30
30
+
buildInputs = [ dconf avahi intltool file ];
31
31
32
32
patchPhase = ''
33
33
sed -i 's|/usr/share/libvirt/cpu_map.xml|${system-libvirt}/share/libvirt/cpu_map.xml|g' virtinst/capabilities.py
···
54
54
manages Xen and LXC (linux containers).
55
55
'';
56
56
license = licenses.gpl2;
57
57
-
maintainers = with maintainers; [qknight offline];
57
57
+
maintainers = with maintainers; [ qknight offline fpletz ];
58
58
};
59
59
}