civodul pushed a commit to branch master
in repository guix.

commit 1c35fe0831828f969644628418267442fd58e62c
Author: Simon Tournier <[email protected]>
AuthorDate: Tue Sep 10 03:27:14 2024 +0200

    gnu: gnulib: Move PropList.txt origin from phases to native-inputs.
    
    * gnu/packages/dlang.scm (gnulib-checkout)[arguments]<phases>: Move PropList
    origin from here...
    [native-inputs]: ...to here.
    
    Change-Id: I3576a169837039bc6beaae0d68ab459ed642e3c8
    Signed-off-by: Ludovic Courtès <[email protected]>
---
 gnu/packages/build-tools.scm | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm
index 319a1d0431..79623513d3 100644
--- a/gnu/packages/build-tools.scm
+++ b/gnu/packages/build-tools.scm
@@ -919,14 +919,7 @@ Makefiles, JSON Compilation Database, and experimentally 
Ninja.")
                                         "Scripts.txt"
                                         "Blocks.txt")
                         (list
-                         #$(origin
-                             (method url-fetch)
-                             (uri (string-append
-                                   "https://www.unicode.org/Public/";
-                                   "3.0-Update1/PropList-3.0.1.txt"))
-                             (sha256
-                              (base32
-                               
"0k6wyijyzdl5g3nibcwfm898kfydx1pqaz28v7fdvnzdvd5fz7lh"))))
+                         #$(this-package-native-input "PropList.txt"))
                         (find-ucd-files "BidiMirroring.txt"
                                         "EastAsianWidth.txt"
                                         "LineBreak.txt"
@@ -959,6 +952,15 @@ Makefiles, JSON Compilation Database, and experimentally 
Ninja.")
       bash-minimal python perl clisp
       ;; Unicode data:
       ucd
+      (origin
+        (method url-fetch)
+        (uri (string-append
+              "https://www.unicode.org/Public/";
+              "3.0-Update1/PropList-3.0.1.txt"))
+        (file-name "PropList.txt")
+        (sha256
+         (base32
+          "0k6wyijyzdl5g3nibcwfm898kfydx1pqaz28v7fdvnzdvd5fz7lh")))
       ;; Programs for the tests:
       cppi indent git-minimal/pinned autoconf))
     (home-page "https://www.gnu.org/software/gnulib/";)

Reply via email to