diff options
author | Attila Lendvai <attila@lendvai.name> | 2022-12-06 14:44:44 -0300 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-12-07 10:04:50 -0500 |
commit | 2e0488ca1c87c6689723e53cad4e769de3347e19 (patch) | |
tree | 4e0d14c8ba23895917a9c8fa94d2a90d9d3f5909 /gnu/packages | |
parent | d4c2ea9226c229e56022ba641100ee7f5db8f53f (diff) | |
download | guix-2e0488ca1c87c6689723e53cad4e769de3347e19.tar.gz guix-2e0488ca1c87c6689723e53cad4e769de3347e19.zip |
gnu: gpaste: Fix missing @gschemasCompiled@ substitute.
* gnu/packages/gnome-xyz.scm (gpaste) [phases]
{fix-introspection-install-dir}: Substitute @gschemasCompiled@ placeholder.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gnome-xyz.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index 0368ccc223..48b126ce15 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -913,6 +913,9 @@ notebooks and tiling window managers.") #~(modify-phases %standard-phases (add-after 'unpack 'fix-introspection-install-dir (lambda _ + (substitute* "src/libgpaste/gpaste/gpaste-settings.c" + (("@gschemasCompiled@") + (string-append #$output "/share/glib-2.0/schemas/"))) (substitute* '("src/gnome-shell/extension.js" "src/gnome-shell/prefs.js") (("@typelibPath@") |