[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: workrave: Correct the types of inputs used.
From: |
guix-commits |
Subject: |
02/02: gnu: workrave: Correct the types of inputs used. |
Date: |
Wed, 11 Sep 2019 09:07:57 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit d1c9684753ff3a6adf1bb9ab397a73a5c23010c1
Author: Maxim Cournoyer <address@hidden>
Date: Tue Sep 10 21:10:03 2019 +0900
gnu: workrave: Correct the types of inputs used.
* gnu/packages/gnome.scm (workrave)[propagated-inputs]: Move them all to...
[inputs]: ...here.
[native-inputs]: Move libxscrnsaver to the 'inputs' field.
---
gnu/packages/gnome.scm | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 60e39be..8341bd6 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -8007,16 +8007,17 @@ configurable file renaming. ")
(sha256
(base32 "0czwhr7nw523753ajcjjfwrf91mq8pmzr19gp0srqsvb1dsn1zcf"))))
(build-system glib-or-gtk-build-system)
- (propagated-inputs `(("glib" ,glib)
- ("gtk+" ,gtk+)
- ("gdk-pixbuf" ,gdk-pixbuf)
- ("gtkmm" ,gtkmm)
- ("glibmm" ,glibmm)
- ("libx11" ,libx11)
- ("libxtst" ,libxtst)
- ("dconf" ,dconf)
- ("libice" ,libice)))
- (inputs `(("libsm" ,libsm)))
+ (inputs `(("glib" ,glib)
+ ("gtk+" ,gtk+)
+ ("gdk-pixbuf" ,gdk-pixbuf)
+ ("gtkmm" ,gtkmm)
+ ("glibmm" ,glibmm)
+ ("libx11" ,libx11)
+ ("libxtst" ,libxtst)
+ ("dconf" ,dconf)
+ ("libice" ,libice)
+ ("libsm" ,libsm)
+ ("libxscrnsaver" ,libxscrnsaver)))
(native-inputs `(("boost" ,boost)
("pkg-config" ,pkg-config)
("gettext" ,gnu-gettext)
@@ -8025,7 +8026,6 @@ configurable file renaming. ")
("automake" ,automake)
("libtool" ,libtool)
("intltool" ,intltool)
- ("libxscrnsaver" ,libxscrnsaver)
("gobject-introspection" ,gobject-introspection)
("python3" ,python-3)
("python-jinja2" ,python-jinja2)))