guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

07/14: doc: cookbook: Simplify inputs in examples.


From: guix-commits
Subject: 07/14: doc: cookbook: Simplify inputs in examples.
Date: Mon, 20 Dec 2021 10:24:12 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit e60f803b900634ee90a498c45c5af7cd5160f8c3
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Mon Dec 20 16:15:09 2021 +0100

    doc: cookbook: Simplify inputs in examples.
    
    * doc/guix-cookbook.texi (Recursive importers, Inheritance): Use
    the simplified input style.
---
 doc/guix-cookbook.texi | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/doc/guix-cookbook.texi b/doc/guix-cookbook.texi
index 88d3b98..e19ab9c 100644
--- a/doc/guix-cookbook.texi
+++ b/doc/guix-cookbook.texi
@@ -1222,10 +1222,7 @@ $ guix import cran --recursive walrus
             "1nk2glcvy4hyksl5ipq2mz8jy4fss90hx6cq98m3w96kzjni6jjj"))))
     (build-system r-build-system)
     (propagated-inputs
-      `(("r-ggplot2" ,r-ggplot2)
-        ("r-jmvcore" ,r-jmvcore)
-        ("r-r6" ,r-r6)
-        ("r-wrs2" ,r-wrs2)))
+      (list r-ggplot2 r-jmvcore r-r6 r-wrs2))
     (home-page "https://github.com/jamovi/walrus";)
     (synopsis "Robust Statistical Methods")
     (description
@@ -1284,8 +1281,7 @@ noticed that a significant number of them have a 
@code{inherit} field:
               (sha256
                (base32
                 "17fpahgh5dyckgz7rwqvzgnhx53cx9kr2xw0szprc6bnqy977fi8"))))
-    (native-inputs
-     `(("gtk-encode-symbolic-svg" ,gtk+ "bin")))))
+    (native-inputs (list `(,gtk+ "bin")))))
 @end lisp
 
 All unspecified fields are inherited from the parent package.  This is very



reply via email to

[Prev in Thread] Current Thread [Next in Thread]