diff options
author | Raghav Gururajan <raghavgururajan@disroot.org> | 2020-08-26 13:23:42 -0400 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2020-08-29 09:12:19 +0200 |
commit | 68919c97f34e3eb21cc336278d9bf36a1a11a348 (patch) | |
tree | fdff862e36ffa6970f8fddff437ced2ab4a6361f | |
parent | 67305e42937951927d8f1e5a389a436d187583f7 (diff) | |
download | guix-68919c97f34e3eb21cc336278d9bf36a1a11a348.tar.gz |
gnu: gnome-calculator: Fix break-point trap during finance mode.
* gnu/packages/gnome.scm (gnome-calculator) [inputs]: Add gsettings-desktop-schemas. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
-rw-r--r-- | gnu/packages/gnome.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index b65d680d14..54dfcb7bd0 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -11432,7 +11432,8 @@ handling the startup notification side.") ("pkg-config" ,pkg-config) ("vala" ,vala))) (inputs - `(("gtksourceview" ,gtksourceview) + `(("gsettings-desktop-schemas" ,gsettings-desktop-schemas) + ("gtksourceview" ,gtksourceview) ("libsoup" ,libsoup) ("libxml2" ,libxml2) ("mpc" ,mpc) |