This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new f73a492ac4 gnu: lr: Update to 2.0.
f73a492ac4 is described below

commit f73a492ac4db6e0def4e214e6aac851c975bfba2
Author: Artyom V. Poptsov <[email protected]>
AuthorDate: Sun Aug 31 17:11:43 2025 +0300

    gnu: lr: Update to 2.0.
    
    * gnu/packages/admin.scm (lr): Update to 2.0.
    [arguments]: Use GEXPs.
    
    Change-Id: I3264ccc86aa699a1e77c0388b48c801c5a4392ac
---
 gnu/packages/admin.scm | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 02b35ae48b..a2778cc84b 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -3015,7 +3015,7 @@ environment variable is set and output is to tty.")
 (define-public lr
   (package
     (name "lr")
-    (version "1.6")
+    (version "2.0")
     (source
      (origin
        (method git-fetch)
@@ -3024,14 +3024,14 @@ environment variable is set and output is to tty.")
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0qixmvxikyz02348xc0a718m9b1pzcazvf36rjbdk6ayn66g9hsd"))))
+        (base32 "05k971vf6080igfila8iav5d4j7sgh301123yng9lvsmr8frf8mf"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:tests? #f ; There are no tests.
-       #:make-flags (list (string-append "CC=" ,(cc-for-target))
-                          (string-append "PREFIX=" %output))
-       #:phases (modify-phases %standard-phases
-                  (delete 'configure))))
+     (list #:tests? #f ; There are no tests.
+           #:make-flags #~(list (string-append "CC=" #$(cc-for-target))
+                                (string-append "PREFIX=" %output))
+           #:phases #~(modify-phases %standard-phases
+                        (delete 'configure))))
     (synopsis "Tool to generate customized file listings")
     (description
      "lr is a tool for generating file listings, which includes the best

Reply via email to