mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2026-01-25 03:54:58 -06:00
Compare commits
6 commits
a214c7a681
...
dcad4d4ebf
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dcad4d4ebf | ||
|
|
9e134dc79c | ||
|
|
880f9dc140 | ||
|
|
aaab3325f2 | ||
|
|
cb78bdc350 | ||
|
|
bc2a73d7a8 |
2 changed files with 12 additions and 9 deletions
|
|
@ -145,13 +145,13 @@
|
|||
(license (nonfree "https://www.google.com/intl/en/chrome/terms/")))))
|
||||
|
||||
(define-public google-chrome-stable
|
||||
(make-google-chrome "stable" "139.0.7258.127" "1zq0xy7n97z2vklagwh25wmgbhzfrl94jjnvdvr16a7v334zz17k"))
|
||||
(make-google-chrome "stable" "140.0.7339.185" "0qq7f2d5gjmhvqqfiy71p9ycs0cr1yvzkrq20znzpbxgaw6ipw3h"))
|
||||
|
||||
(define-public google-chrome-beta
|
||||
(make-google-chrome "beta" "140.0.7339.16" "0zyq0sigr5pxhylp3mr45f4i3xjsbj2rmgvymgkb407ffmlcywn2"))
|
||||
(make-google-chrome "beta" "141.0.7390.30" "18w22p89bk1fllqhrmz56cf99xnb44xpk1h89960x09gk2fv53fk"))
|
||||
|
||||
(define-public google-chrome-unstable
|
||||
(make-google-chrome "unstable" "141.0.7354.0" "0b5n3flblzbfjmvkyj1lxicx48jzx47l5rba3i3j3p2n4p5hvk75"))
|
||||
(make-google-chrome "unstable" "142.0.7420.2" "1gwa00s9din73k6y2sdyd4rdvd0h8y3pnvpapkig4abhpy1lkyc7"))
|
||||
|
||||
(define-public google-chrome-canary
|
||||
(make-google-chrome "canary" "141.0.7357.0" "0hc4k4nyxrvc07dmg5cbr795d2f56dff7br905pj9cxhg2ha7c5j"))
|
||||
(make-google-chrome "canary" "142.0.7426.0" "0rshsm2c3yjnd4lzbcagamx9fa194378pm6pywc7rz7xili6mlv2"))
|
||||
|
|
|
|||
|
|
@ -361,14 +361,14 @@ stable, responsive and smooth desktop experience.")))
|
|||
(define-public linux-firmware
|
||||
(package
|
||||
(name "linux-firmware")
|
||||
(version "20250808")
|
||||
(version "20250917")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://kernel.org/linux/kernel/firmware/"
|
||||
"linux-firmware-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0zw3vsmd07yr27y5fz0m357hci00ah5impx5sz4jcnd18ldmaaf0"))))
|
||||
"0xgvb0fb4s48423asdb1dnkjjskbfmm336gm6vki2nliasvpa18j"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
(list #:tests? #f
|
||||
|
|
@ -415,8 +415,11 @@ if your hardware is supported by one of the smaller firmware packages.")
|
|||
#~(lambda _
|
||||
(use-modules (ice-9 regex))
|
||||
(substitute* "WHENCE"
|
||||
(("^(File|RawFile|Link): *([^ ]*)(.*)" _ type file rest)
|
||||
(string-append (if (string-match #$keep file) type "Skip") ": " file rest)))))
|
||||
(("^(File|RawFile): *([^ ]*)(.*)" _ type file rest)
|
||||
(string-append (if (string-match #$keep file) type "Skip") ": " file rest))
|
||||
(("^Link: *(.*) *-> *(.*)" _ file target)
|
||||
(string-append (if (string-match #$keep target) "Link" "Skip")
|
||||
": " file " -> " target)))))
|
||||
|
||||
(define-public amdgpu-firmware
|
||||
(package
|
||||
|
|
@ -705,7 +708,7 @@ laptops).")
|
|||
((#:phases phases #~%standard-phases)
|
||||
#~(modify-phases #$phases
|
||||
(add-after 'unpack 'select-firmware
|
||||
#$(select-firmware "^iwlwifi-")))))))
|
||||
#$(select-firmware "^intel/iwlwifi/")))))))
|
||||
(home-page "https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi")
|
||||
(synopsis "Nonfree firmware for Intel wifi chips")
|
||||
(description "The proprietary iwlwifi kernel module is required by many
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue