[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/09: gnu: Add nbfc-linux.
From: |
guix-commits |
Subject: |
09/09: gnu: Add nbfc-linux. |
Date: |
Tue, 18 Oct 2022 08:56:27 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 72a41c4012d8e65664ec6a18ca0eb69ed20fdfd8
Author: florhizome <florhizome@posteo.net>
AuthorDate: Tue Oct 11 17:19:57 2022 +0000
gnu: Add nbfc-linux.
* gnu/packages/linux.scm (nbfc-linux): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/linux.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index c490170b72..864c379eac 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -5894,6 +5894,42 @@ drive that supports the ATA/ATAPI-7 IDLE IMMEDIATE
command with unload
feature, and a laptop with an accelerometer. It has no effect on SSDs.")
(license license:gpl2)))
+
+(define-public nbfc-linux
+ (let ((version "0.1.7")
+ (commit "4c2b75e4a875459e86a9892319889ff945e9cadf")
+ (revision "0"))
+ (package
+ (name "nbfc-linux")
+ (version (git-version version revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/nbfc-linux/nbfc-linux")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0mmyfaigrh3fd5v11a8p38km4m02qzsfx8yh72g0z405bzhqn5jk"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:make-flags (list (string-append "CC="
+ ,(cc-for-target))
+ (string-append "PREFIX="
+ (assoc-ref %outputs "out")))
+ #:tests? #f
+ #:phases (modify-phases %standard-phases
+ (delete 'configure))))
+ (native-inputs (list pkg-config))
+ (propagated-inputs (list python dmidecode))
+ (synopsis "NoteBook FanControl ported to Linux")
+ (description
+ "This package provides a C port of NoteBook FanControl (NBFC), a fan
+control service for notebooks. It provides the same utilities with the same
+interfaces as the original NBFC, although the implementation differs.")
+ (home-page "https://github.com/nbfc-linux/nbfc-linux")
+ (license license:gpl3+))))
+
(define-public thinkfan
(package
(name "thinkfan")
- branch master updated (0289312bc9 -> 72a41c4012), guix-commits, 2022/10/18
- 03/09: gnu: guix: Switch to Guile-GnuTLS., guix-commits, 2022/10/18
- 01/09: gnu: guile-gnutls: Fix cross-crompilation., guix-commits, 2022/10/18
- 05/09: gnu: hpcguix-web: Remove input labels., guix-commits, 2022/10/18
- 07/09: gnu: Add python-simple-pid., guix-commits, 2022/10/18
- 02/09: gnu: gnutls-latest: Remove dependency on Guile., guix-commits, 2022/10/18
- 08/09: gnu: wolfssl: Update to 5.5.1 [security fixes]., guix-commits, 2022/10/18
- 04/09: self: Switch to Guile-GnuTLS., guix-commits, 2022/10/18
- 06/09: doc: Mention Guile-GnuTLS in the requirements., guix-commits, 2022/10/18
- 09/09: gnu: Add nbfc-linux.,
guix-commits <=