[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add bbswitch-module.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add bbswitch-module. |
Date: |
Sun, 14 Jun 2020 07:36:50 -0400 |
This is an automated email from the git hooks/post-receive script.
ambrevar pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new cc62eab gnu: Add bbswitch-module.
cc62eab is described below
commit cc62eab16314a1c925eb49a4e459ee0a0a36608e
Author: Pierre Neidhardt <mail@ambrevar.xyz>
AuthorDate: Thu Jun 11 22:23:59 2020 +0200
gnu: Add bbswitch-module.
* gnu/packages/linux.scm (bbswitch-module): New variable.
---
gnu/packages/linux.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 20c1714..f2b35e3 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -1087,6 +1087,29 @@ network adapters.")
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")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add bbswitch-module.,
guix-commits <=