This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new c8985dd911 gnu: Add undervolt
c8985dd911 is described below
commit c8985dd911c4c8e2948c888df8b54c9bc317625e
Author: marderbot <[email protected]>
AuthorDate: Fri Feb 27 18:47:05 2026 +0100
gnu: Add undervolt
* gnu/packages/admin.scm (undervolt): New variable.
Merges: https://codeberg.org/guix/guix/pulls/6747
Change-Id: I87569de5a4b4e31d47ee628c4a3e73c776931d33
Reviwed-by: Hugo Buddelmeijer <[email protected]>
Modified-by: Sharlatan Hellseher <[email protected]>
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/admin.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 0b5e27c771..aaa2c2a48e 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -82,6 +82,7 @@
;;; Copyright © 2026 Andreas Enge <[email protected]>
;;; Copyright © 2026 Luis Guilherme Coelho <[email protected]>
;;; Copyright © 2026 Andy Tai <[email protected]>
+;;; Copyright © 2026 marderbot <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -5253,6 +5254,34 @@ support forum. It runs with the @code{/exec} command in
most IRC clients.")
(description "This package provides @code{udev} bindings for Python.")
(license license:lgpl2.1)))
+(define-public undervolt
+ (package
+ (name "undervolt")
+ (version "0.4.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/georgewhewell/undervolt")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "136j8rqqra84yg57vn3nqwk1b36y9y7sjkynr0fl8pnrb7z8mq0v"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list #:tests? #f)) ;no tests
+ (native-inputs
+ (list python-setuptools))
+ (home-page "https://github.com/georgewhewell/undervolt")
+ (synopsis "Undervolt Intel CPUs under Linux")
+ (description
+ "Undervolt is a program for undervolting Intel CPUs under Linux. It
+works in a similar manner to the Windows program ThrottleStop (i.e, MSR
+0x150). A fixed voltage offset may be applied to one of 5 voltage planes,
+which overrides systems' temperature target (CPU will throttle when this
+temperature is reached).")
+ (license license:gpl2+)))
+
(define-public vmtouch
(package
(name "vmtouch")