mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add bbswitch-module.
* gnu/packages/linux.scm (bbswitch-module): New variable.
This commit is contained in:
parent
4fdf3a2e6e
commit
cc62eab163
1 changed files with 23 additions and 0 deletions
|
@ -1087,6 +1087,29 @@ (define-public vhba-module
|
|||
between the CDemu userspace daemon and linux kernel.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public bbswitch-module
|
||||
(package
|
||||
(name "bbswitch-module")
|
||||
(version "0.8")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/Bumblebee-Project/bbswitch")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1glch4j0x1dzlp2yrb67v2r5jg9609jb6p8m251y78m74advqw0l"))))
|
||||
(build-system linux-module-build-system)
|
||||
(arguments
|
||||
;; No tests.
|
||||
`(#:tests? #f))
|
||||
(home-page "https://github.com/Bumblebee-Project/bbswitch")
|
||||
(synopsis "Kernel module that disables discrete Nvidia graphics cards")
|
||||
(description "The bbswitch module provides a way to toggle the Nvidia
|
||||
graphics card on Optimus laptops.")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public ddcci-driver-linux
|
||||
(package
|
||||
(name "ddcci-driver-linux")
|
||||
|
|
Loading…
Reference in a new issue