From 07156ac9dd25a16523d7334a0275e2db0e489ca7 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Tue, 3 Dec 2024 11:50:13 +0800 Subject: [PATCH] pkgs: remove gnome namespace to top-level --- pkgs/gnome-search-provider-recoll.nix | 4 ++-- pkgs/nautilus-annotations/default.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/gnome-search-provider-recoll.nix b/pkgs/gnome-search-provider-recoll.nix index a6248f77..5ec12e27 100644 --- a/pkgs/gnome-search-provider-recoll.nix +++ b/pkgs/gnome-search-provider-recoll.nix @@ -7,7 +7,7 @@ , glib , gobject-introspection , wrapGAppsHook3 -, gnome +, gnome-shell }: python3Packages.buildPythonPackage rec { @@ -29,7 +29,7 @@ python3Packages.buildPythonPackage rec { buildInputs = [ glib ]; postPatch = '' - substituteInPlace gssp-recoll.py --replace "/usr/share" "${gnome.gnome-shell}/share" + substituteInPlace gssp-recoll.py --replace "/usr/share" "${gnome-shell}/share" ''; meta = with lib; { diff --git a/pkgs/nautilus-annotations/default.nix b/pkgs/nautilus-annotations/default.nix index 37cdc1ee..93653b08 100644 --- a/pkgs/nautilus-annotations/default.nix +++ b/pkgs/nautilus-annotations/default.nix @@ -2,7 +2,7 @@ , lib , fetchFromGitLab , glib -, gnome +, nautilus , gtksourceview5 , libadwaita , autoreconfHook @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook glib - gnome.nautilus + nautilus pkg-config wrapGAppsHook4 ];