gnu: bbswitch-module: Update to 20220529 and fix for Linux 5.18+.
* gnu/packages/linux.scm (bbswitch-module): Update to 20220529 and fix for Linux 5.18+. [source]: Switch to fork since fix is not merged upstream yet.
parent
f73d9690ad
commit
4cc746820a
|
@ -1442,19 +1442,22 @@ emulate optical devices such as DVD and CD-ROM drives.")
|
||||||
(define-public bbswitch-module
|
(define-public bbswitch-module
|
||||||
;; Use "develop" branch since stable release does not build on Linux >= 5.6.
|
;; Use "develop" branch since stable release does not build on Linux >= 5.6.
|
||||||
;; See https://github.com/Bumblebee-Project/bbswitch/issues/205.
|
;; See https://github.com/Bumblebee-Project/bbswitch/issues/205.
|
||||||
(let ((commit "ddbd243638c7bc2baecf43a78aff46cdc12e9b2e"))
|
(let ((commit "19f60204596a6463b162fc7ca11f4946f5c20cea"))
|
||||||
(package
|
(package
|
||||||
(name "bbswitch-module")
|
(name "bbswitch-module")
|
||||||
(version (git-version "0.8" "1" commit))
|
(version (git-version "0.8" "2" commit))
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/Bumblebee-Project/bbswitch")
|
;; Use fork until
|
||||||
|
;; https://github.com/Bumblebee-Project/bbswitch/pull/219
|
||||||
|
;; is merged.
|
||||||
|
(url "https://github.com/madchic/bbswitch")
|
||||||
(commit commit)))
|
(commit commit)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1pgldnza7mzd0flrxg4q69dwbq1fhl58m5c62ary5drb0xyf3lqb"))))
|
"1pv41y02c9xg9k1bg4i4ll3w7hxxzdr651i08f092b9q5hr57mqn"))))
|
||||||
(build-system linux-module-build-system)
|
(build-system linux-module-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:tests? #f)) ; no test suite
|
(list #:tests? #f)) ; no test suite
|
||||||
|
|
Reference in New Issue