diff options
Diffstat (limited to 'librewolf.scm')
-rw-r--r-- | librewolf.scm | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/librewolf.scm b/librewolf.scm index 9a2cf6c..e816f7c 100644 --- a/librewolf.scm +++ b/librewolf.scm @@ -52,30 +52,28 @@ ) ;; Update this id with every firefox update to its release date. ;; It's used for cache validation and therefore can lead to strange bugs. -(define %firefox-build-id "20240214122848") +(define %firefox-build-id "1710388333") (define-public librewolf (package (inherit firefox) (name "librewolf") - (version "123.0-1") + (version "123.0.1-1") (source (origin (method url-fetch) - (uri (string-append "https://gitlab.com/api/v4/projects/32320088/packages/generic/librewolf-source/" + (uri + (string-append "https://gitlab.com/api/v4/projects/32320088/packages/generic/librewolf-source/" version "/librewolf-" version ".source.tar.gz")) (sha256 - (base32 "050kg717jy70fvjfh91aydmq25mqaz6cbf9cqsdsgh6hvpxrw873")) - )) + (base32 "1farzssmq905mzr9m83ymbyrcram13aggglsdd95vzjkvwbmpl6n")))) (arguments (substitute-keyword-arguments (package-arguments firefox-esr) ((#:phases phases) #~(modify-phases #$phases - ;(add-before 'build 'replace-policies (add-before 'patch-cargo-checksums 'replace-policies (lambda _ - (copy-file #$(local-file "aux-files/librewolf/policies.json") "lw/policies.json")) - ) + (copy-file #$(local-file "aux-files/librewolf/policies.json") "lw/policies.json"))) (replace 'set-build-id (lambda _ |