mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2026-01-25 03:54:58 -06:00
Compare commits
4 commits
8918e17049
...
a131c40472
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a131c40472 | ||
|
|
f5338f63fc | ||
|
|
60d1e7b0f6 | ||
|
|
260dc0fdb7 |
3 changed files with 18 additions and 7 deletions
|
|
@ -177,7 +177,7 @@ various IDEs and plugins.")
|
|||
(files '("share/dotnet")))))
|
||||
(inputs
|
||||
`(("gcc:lib" ,gcc "lib")
|
||||
("icu4c" ,icu4c-71)
|
||||
("icu4c" ,icu4c)
|
||||
("lttng-ust" ,lttng-ust)
|
||||
("mit-krb5" ,mit-krb5)
|
||||
("openssl" ,openssl)
|
||||
|
|
@ -287,7 +287,7 @@ building different types of applications.")
|
|||
(inputs
|
||||
`(("gcc:lib" ,gcc "lib")
|
||||
("glibc", glibc)
|
||||
("icu4c" ,icu4c-71)
|
||||
("icu4c" ,icu4c)
|
||||
("lttng-ust" ,lttng-ust)
|
||||
("mit-krb5" ,mit-krb5)
|
||||
("openssl" ,openssl)
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
;;; Copyright © 2025 Maxim Cournoyer <maxim@guixotic.coop>
|
||||
|
||||
(define-module (nongnu packages gradle)
|
||||
#:use-module (gnu packages base)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages java)
|
||||
#:use-module (guix build-system copy)
|
||||
|
|
@ -35,9 +36,16 @@
|
|||
`("JAVA_HOME" =
|
||||
(,(dirname
|
||||
(dirname
|
||||
(search-input-file inputs "bin/javac")))))))))))
|
||||
(search-input-file inputs "bin/javac")))))
|
||||
`("PATH" prefix
|
||||
(,(dirname
|
||||
(search-input-file inputs "bin/sed"))
|
||||
,(dirname
|
||||
(search-input-file inputs "bin/uname"))
|
||||
,(dirname
|
||||
(search-input-file inputs "/bin/xargs"))))))))))
|
||||
(native-inputs (list unzip))
|
||||
(inputs (list `(,openjdk "jdk")))
|
||||
(inputs (list coreutils findutils `(,openjdk "jdk") sed))
|
||||
(home-page "https://gradle.org/")
|
||||
(synopsis "Flexible build automation tool for JVM")
|
||||
(description "Gradle is a build tool with a focus on build automation and
|
||||
|
|
|
|||
|
|
@ -529,20 +529,20 @@ Release (ESR) version.")
|
|||
|
||||
;; 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 "20251217214444")
|
||||
(define %firefox-build-id "20260112140453")
|
||||
|
||||
(define-public firefox
|
||||
(package
|
||||
(inherit firefox-esr)
|
||||
(name "firefox")
|
||||
(version "146.0.1")
|
||||
(version "147.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://archive.mozilla.org/pub/firefox/releases/"
|
||||
version "/source/firefox-" version ".source.tar.xz"))
|
||||
(sha256
|
||||
(base32 "1swih4jljq162vgdl2m2d8xn4s4hj4vjqcfww59kk4kkhh78lrz9"))
|
||||
(base32 "1znr9wp4f79b83mv0as9kj0nh09yjxzqv4nbi4bmn7jgfmiqwb92"))
|
||||
(patches
|
||||
(map (lambda (patch)
|
||||
(search-path
|
||||
|
|
@ -564,6 +564,9 @@ Release (ESR) version.")
|
|||
(replace 'set-build-id
|
||||
(lambda _
|
||||
(setenv "MOZ_BUILD_DATE" #$%firefox-build-id)))))))
|
||||
(inputs
|
||||
(modify-inputs (package-inputs firefox-esr)
|
||||
(replace "icu4c" icu4c-78)))
|
||||
(native-inputs
|
||||
(modify-inputs (package-native-inputs firefox-esr)
|
||||
(replace "rust" rust-firefox)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue