gnome3.nautilus: 3.32.3 → 3.34.0
* add gobject-introspection for gir Co-authored-by: worldofpeace <worldofpeace@protonmail.ch>
This commit is contained in:
parent
f01d9db504
commit
f011fc9c78
@ -1,15 +0,0 @@
|
|||||||
--- a/src/gnome-desktop/gnome-desktop-thumbnail-script.c
|
|
||||||
+++ a/src/gnome-desktop/gnome-desktop-thumbnail-script.c
|
|
||||||
@@ -536,9 +536,9 @@ add_bwrap (GPtrArray *array,
|
|
||||||
g_return_val_if_fail (script->s_infile != NULL, FALSE);
|
|
||||||
|
|
||||||
add_args (array,
|
|
||||||
- "bwrap",
|
|
||||||
- "--ro-bind", "/usr", "/usr",
|
|
||||||
- "--ro-bind", "/etc/ld.so.cache", "/etc/ld.so.cache",
|
|
||||||
+ "@bubblewrap_bin@",
|
|
||||||
+ "--ro-bind", "@storeDir@", "@storeDir@",
|
|
||||||
+ "--ro-bind", "/run/current-system", "/run/current-system",
|
|
||||||
NULL);
|
|
||||||
|
|
||||||
/* These directories might be symlinks into /usr/... */
|
|
@ -1,33 +1,77 @@
|
|||||||
{ stdenv, fetchurl, meson, ninja, pkgconfig, gettext, libxml2
|
{ stdenv
|
||||||
, desktop-file-utils, python3, wrapGAppsHook , gtk3, gnome3, gnome-autoar
|
, fetchurl
|
||||||
, glib-networking, shared-mime-info, libnotify, libexif, libseccomp , exempi
|
, meson
|
||||||
, librsvg, tracker, tracker-miners, gexiv2, libselinux, gdk-pixbuf
|
, ninja
|
||||||
, substituteAll, bubblewrap, gst_all_1, gsettings-desktop-schemas
|
, pkgconfig
|
||||||
|
, gettext
|
||||||
|
, libxml2
|
||||||
|
, desktop-file-utils
|
||||||
|
, python3
|
||||||
|
, wrapGAppsHook
|
||||||
|
, gtk3
|
||||||
|
, gnome3
|
||||||
|
, gnome-autoar
|
||||||
|
, glib-networking
|
||||||
|
, shared-mime-info
|
||||||
|
, libnotify
|
||||||
|
, libexif
|
||||||
|
, libseccomp
|
||||||
|
, exempi
|
||||||
|
, librsvg
|
||||||
|
, tracker
|
||||||
|
, tracker-miners
|
||||||
|
, gexiv2
|
||||||
|
, libselinux
|
||||||
|
, gdk-pixbuf
|
||||||
|
, substituteAll
|
||||||
|
, gnome-desktop
|
||||||
|
, gst_all_1
|
||||||
|
, gsettings-desktop-schemas
|
||||||
|
, gobject-introspection
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
stdenv.mkDerivation rec {
|
||||||
pname = "nautilus";
|
pname = "nautilus";
|
||||||
version = "3.32.3";
|
version = "3.34.0";
|
||||||
in stdenv.mkDerivation rec {
|
|
||||||
name = "${pname}-${version}";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||||
sha256 = "1x9crzbj6rrrf8w5dkcx0c14j40byr4ijpzkwd5dcrbfvvdy1r01";
|
sha256 = "1ncs5hmaxjb9p2yzj81m7dz2x27vzmvppir3058dk236jzn98r36";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
meson ninja pkgconfig libxml2 gettext python3 wrapGAppsHook
|
|
||||||
desktop-file-utils
|
desktop-file-utils
|
||||||
|
gettext
|
||||||
|
gobject-introspection
|
||||||
|
libxml2
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
pkgconfig
|
||||||
|
python3
|
||||||
|
wrapGAppsHook
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
glib-networking shared-mime-info libexif gtk3 exempi libnotify libselinux
|
exempi
|
||||||
tracker tracker-miners gexiv2 libseccomp bubblewrap gst_all_1.gst-plugins-base
|
gexiv2
|
||||||
gnome3.adwaita-icon-theme gsettings-desktop-schemas
|
glib-networking
|
||||||
|
gnome-desktop
|
||||||
|
gnome3.adwaita-icon-theme
|
||||||
|
gsettings-desktop-schemas
|
||||||
|
gst_all_1.gst-plugins-base
|
||||||
|
gtk3
|
||||||
|
libexif
|
||||||
|
libnotify
|
||||||
|
libseccomp
|
||||||
|
libselinux
|
||||||
|
shared-mime-info
|
||||||
|
tracker
|
||||||
|
tracker-miners
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [ gnome-autoar ];
|
propagatedBuildInputs = [
|
||||||
|
gnome-autoar
|
||||||
|
];
|
||||||
|
|
||||||
preFixup = ''
|
preFixup = ''
|
||||||
gappsWrapperArgs+=(
|
gappsWrapperArgs+=(
|
||||||
@ -44,13 +88,6 @@ in stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./extension_dir.patch
|
./extension_dir.patch
|
||||||
# 3.30 now generates it's own thummbnails,
|
|
||||||
# and no longer depends on `gnome-desktop`
|
|
||||||
(substituteAll {
|
|
||||||
src = ./bubblewrap-paths.patch;
|
|
||||||
bubblewrap_bin = "${bubblewrap}/bin/bwrap";
|
|
||||||
inherit (builtins) storeDir;
|
|
||||||
})
|
|
||||||
];
|
];
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user