z572 pushed a commit to branch master
in repository guix.

commit a99ddc8b532817745ca45794abf53ab852545d4c
Author: Ian Eure <[email protected]>
AuthorDate: Tue Jan 21 19:45:49 2025 -0800

    gnu: make-librewolf-source: Take l10n package as an arg.
    
    * gnu/packages/librewolf.scm (make-librewolf-source): Take l10n package as 
an
    arg.
    
    Change-Id: I3c405edc07edb54e27afee16325c93a83d37ad79
    Signed-off-by: Zheng Junjie <[email protected]>
---
 gnu/packages/librewolf.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/librewolf.scm b/gnu/packages/librewolf.scm
index 2011e261e4..98bd6913b5 100644
--- a/gnu/packages/librewolf.scm
+++ b/gnu/packages/librewolf.scm
@@ -21,7 +21,7 @@
 ;;; Copyright © 2021, 2022, 2023 John Kehayias <[email protected]>
 ;;; Copyright © 2022 Pierre Langlois <[email protected]>
 ;;; Copyright © 2023 Tomas Volf <[email protected]>
-;;; Copyright © 2023 Ian Eure <[email protected]>
+;;; Copyright © 2023, 2024, 2025 Ian Eure <[email protected]>
 ;;; Copyright © 2024 Remco van 't Veer <[email protected]>
 ;;; Copyright © 2024 Ashvith Shetty <[email protected]>
 ;;;
@@ -126,7 +126,7 @@
       (file-name (git-file-name "firefox-l10n" commit))
       (sha256 (base32 
"0g778fnxg5mkqm3rgryzl64f3n4pczngjdlby07vh2dycvmlyga8")))))
 
-(define* (make-librewolf-source #:key version firefox-hash librewolf-hash)
+(define* (make-librewolf-source #:key version firefox-hash librewolf-hash l10n)
   (let* ((ff-src (firefox-source-origin
                   (car (string-split version #\-))
                   firefox-hash))
@@ -182,7 +182,7 @@
                  (substitute* "scripts/librewolf-patches.py"
                    (("l10n_dir = Path(\"..\", \"l10n\")")
                     (string-append
-                     "l10n_dir = \"" #+firefox-l10n "\""))))
+                     "l10n_dir = \"" #+l10n "\""))))
 
                ;; Run the build script
                (invoke "make" "all")
@@ -214,6 +214,7 @@
       #:version version
       #:firefox-hash "0q6cqfnwc2x09frdvsndmhck8ixrnbl281j9rqw5w8bd7fd2qas9"
       #:librewolf-hash "1xf7gx3xm3c7dhch9gwpb0xp11lcyim1nrbm8sjljxdcs7iq9jy4"))
+      #:l10n firefox-l10n))
     (build-system gnu-build-system)
     (arguments
      (list

Reply via email to