diff options
author | Leo Prikler <leo.prikler@student.tugraz.at> | 2019-12-22 16:10:04 +0100 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2019-12-23 09:38:17 +0200 |
commit | 1f3902ec2d5d93e822ced0e8598cd0b2cb4753e2 (patch) | |
tree | a544dbecbe5a03f871ffba422c83965b23a13ae0 | |
parent | d17eb1011c1b69335a82a47f1d23878647ecf77f (diff) | |
download | guix-1f3902ec2d5d93e822ced0e8598cd0b2cb4753e2.tar.gz guix-1f3902ec2d5d93e822ced0e8598cd0b2cb4753e2.zip |
gnu: gnome-shell-extension-dash-to-dock: Depropagate glib:bin.
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-dash-to-dock):
[propagated-inputs]: Move glib:bin from here...
[native-inputs]: ... to here.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/gnome-xyz.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index 64fac5e3e6..0fc721b7d3 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -139,11 +139,11 @@ the Obsidian icon theme.") (delete 'bootstrap) (delete 'configure)))) (native-inputs - `(("intltool" ,intltool) + `(("glib:bin" ,glib "bin") + ("intltool" ,intltool) ("pkg-config" ,pkg-config))) (propagated-inputs - `(("glib" ,glib) - ("glib" ,glib "bin"))) + `(("glib" ,glib))) (synopsis "Transforms GNOME's dash into a dock") (description "This extension moves the dash out of the overview, transforming it into a dock for easier application launching and |