diff options
author | kiasoc5 <kiasoc5@tutanota.com> | 2022-01-02 16:09:17 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2022-01-02 22:33:28 -0500 |
commit | cdf050be91b07c03823835df7472b392ec399ecf (patch) | |
tree | 587e7953adea03ee19836e8ab7fa520efc1420bb /gnu/packages/toys.scm | |
parent | 19109f549e70b9ec94dfc3633efebcef5a8df266 (diff) | |
download | guix-cdf050be91b07c03823835df7472b392ec399ecf.tar.gz |
gnu: xsnow: Simplify inputs.
* gnu/packages/toys.scm (xsnow)[inputs]: Remove labels. Signed-off-by: Leo Famulari <leo@famulari.name>
Diffstat (limited to 'gnu/packages/toys.scm')
-rw-r--r-- | gnu/packages/toys.scm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gnu/packages/toys.scm b/gnu/packages/toys.scm index 98a1ff0d5f..09426fe6fa 100644 --- a/gnu/packages/toys.scm +++ b/gnu/packages/toys.scm @@ -249,11 +249,7 @@ The GNU project hosts a similar collection of filters, the GNU talkfilters.") (string-append prefix "bin"))) #t))))) (inputs - `(("gtk+" ,gtk+) - ("libx11" ,libx11) - ("libxpm" ,libxpm) - ("libxt" ,libxt) - ("libxxml2" ,libxml2))) + (list gtk+ libx11 libxpm libxt libxml2)) (native-inputs (list pkg-config)) (home-page "https://www.ratrabbit.nl/ratrabbit/xsnow/index.html") |