gnome3.gnome-boxes: nixpkgs-fmt
This commit is contained in:
parent
0720a4e24b
commit
b27b5c4461
@ -1,16 +1,57 @@
|
|||||||
{ stdenv, fetchurl, meson, ninja, wrapGAppsHook, pkgconfig, gettext, itstool, libvirt-glib
|
{ stdenv
|
||||||
, glib, gobject-introspection, libxml2, gtk3, gtk-vnc, freerdp, libvirt, spice-gtk, python3
|
, fetchurl
|
||||||
, spice-protocol, libsoup, libosinfo, systemd, tracker, tracker-miners, vala
|
, meson
|
||||||
, libcap, yajl, gmp, gdbm, cyrus_sasl, gnome3, librsvg, desktop-file-utils
|
, ninja
|
||||||
, mtools, cdrkit, libcdio, libusb, libarchive, acl, libgudev, libsecret
|
, wrapGAppsHook
|
||||||
, libcap_ng, numactl, xen, libapparmor, json-glib, webkitgtk, vte, glib-networking
|
, pkgconfig
|
||||||
|
, gettext
|
||||||
|
, itstool
|
||||||
|
, libvirt-glib
|
||||||
|
, glib
|
||||||
|
, gobject-introspection
|
||||||
|
, libxml2
|
||||||
|
, gtk3
|
||||||
|
, gtk-vnc
|
||||||
|
, freerdp
|
||||||
|
, libvirt
|
||||||
|
, spice-gtk
|
||||||
|
, python3
|
||||||
|
, spice-protocol
|
||||||
|
, libsoup
|
||||||
|
, libosinfo
|
||||||
|
, systemd
|
||||||
|
, tracker
|
||||||
|
, tracker-miners
|
||||||
|
, vala
|
||||||
|
, libcap
|
||||||
|
, yajl
|
||||||
|
, gmp
|
||||||
|
, gdbm
|
||||||
|
, cyrus_sasl
|
||||||
|
, gnome3
|
||||||
|
, librsvg
|
||||||
|
, desktop-file-utils
|
||||||
|
, mtools
|
||||||
|
, cdrkit
|
||||||
|
, libcdio
|
||||||
|
, libusb
|
||||||
|
, libarchive
|
||||||
|
, acl
|
||||||
|
, libgudev
|
||||||
|
, libsecret
|
||||||
|
, libcap_ng
|
||||||
|
, numactl
|
||||||
|
, xen
|
||||||
|
, libapparmor
|
||||||
|
, json-glib
|
||||||
|
, webkitgtk
|
||||||
|
, vte
|
||||||
|
, glib-networking
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
stdenv.mkDerivation rec {
|
||||||
version = "3.34.1";
|
|
||||||
in stdenv.mkDerivation rec {
|
|
||||||
pname = "gnome-boxes";
|
pname = "gnome-boxes";
|
||||||
inherit version;
|
version = "3.34.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/gnome-boxes/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
url = "mirror://gnome/sources/gnome-boxes/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||||
@ -20,18 +61,58 @@ in stdenv.mkDerivation rec {
|
|||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
meson ninja vala pkgconfig gettext itstool wrapGAppsHook gobject-introspection desktop-file-utils python3
|
desktop-file-utils
|
||||||
|
gettext
|
||||||
|
gobject-introspection
|
||||||
|
itstool
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
pkgconfig
|
||||||
|
python3
|
||||||
|
vala
|
||||||
|
wrapGAppsHook
|
||||||
];
|
];
|
||||||
|
|
||||||
# Required for USB redirection PolicyKit rules file
|
# Required for USB redirection PolicyKit rules file
|
||||||
propagatedUserEnvPkgs = [ spice-gtk ];
|
propagatedUserEnvPkgs = [
|
||||||
|
spice-gtk
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
libvirt-glib glib gtk3 gtk-vnc freerdp libxml2
|
acl
|
||||||
libvirt spice-gtk spice-protocol libsoup json-glib webkitgtk libosinfo systemd
|
cyrus_sasl
|
||||||
tracker tracker-miners libcap yajl gmp gdbm cyrus_sasl libusb libarchive
|
freerdp
|
||||||
gnome3.adwaita-icon-theme librsvg acl libgudev libsecret
|
gdbm
|
||||||
libcap_ng numactl xen libapparmor vte glib-networking
|
glib
|
||||||
|
glib-networking
|
||||||
|
gmp
|
||||||
|
gnome3.adwaita-icon-theme
|
||||||
|
gtk-vnc
|
||||||
|
gtk3
|
||||||
|
json-glib
|
||||||
|
libapparmor
|
||||||
|
libarchive
|
||||||
|
libcap
|
||||||
|
libcap_ng
|
||||||
|
libgudev
|
||||||
|
libosinfo
|
||||||
|
librsvg
|
||||||
|
libsecret
|
||||||
|
libsoup
|
||||||
|
libusb
|
||||||
|
libvirt
|
||||||
|
libvirt-glib
|
||||||
|
libxml2
|
||||||
|
numactl
|
||||||
|
spice-gtk
|
||||||
|
spice-protocol
|
||||||
|
systemd
|
||||||
|
tracker
|
||||||
|
tracker-miners
|
||||||
|
vte
|
||||||
|
webkitgtk
|
||||||
|
xen
|
||||||
|
yajl
|
||||||
];
|
];
|
||||||
|
|
||||||
preFixup = ''
|
preFixup = ''
|
||||||
@ -45,8 +126,8 @@ in stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
updateScript = gnome3.updateScript {
|
updateScript = gnome3.updateScript {
|
||||||
packageName = "gnome-boxes";
|
packageName = pname;
|
||||||
attrPath = "gnome3.gnome-boxes";
|
attrPath = "gnome3.${pname}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user