summaryrefslogtreecommitdiff
path: root/gnu/packages/linux.scm
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2026-03-24 14:25:50 +0200
committerEfraim Flashner <efraim@flashner.co.il>2026-03-24 15:04:44 +0200
commit57fdf49a9c5dc7d04fe884ff64d8a228baac5ed4 (patch)
treed19b86b7a04c1a73960fecb6cfc4a198e376872e /gnu/packages/linux.scm
parenta4ad84dd16ad7aa2839533a0b43199a18e4ddc11 (diff)
gnu: ryzenadj: Satisfy linter.
* gnu/packages/linux.scm (ryzenadj): Format with 'guix style'. [source]: Download using git-fetch. [arguments]: Add build-type. Remove phases. Change-Id: Ifcb12ddec61c3e73a6d055c9b19562b2f02cc294
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r--gnu/packages/linux.scm31
1 files changed, 16 insertions, 15 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 4bd686fa69f..5e86eb21c7c 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -12856,24 +12856,25 @@ to build scalable network services based on a cluster of two or more nodes.")
12856 (package 12856 (package
12857 (name "ryzenadj") 12857 (name "ryzenadj")
12858 (version "0.17.0") 12858 (version "0.17.0")
12859 (source (origin 12859 (source
12860 (method url-fetch) 12860 (origin
12861 (uri (string-append "https://github.com/flygoat/ryzenadj/archive/refs/tags/" 12861 (method git-fetch)
12862 "v" version ".tar.gz")) 12862 (uri (git-reference
12863 (sha256 12863 (url "https://github.com/flygoat/ryzenadj")
12864 (base32 "0i2x6kbn2ix52vjz1mmh0c0g3w0k4sn0lq68wbsk0pgndzcck2l4")) 12864 (commit (string-append "v" version))))
12865 (modules '((guix build utils))) 12865 (file-name (git-file-name name version))
12866 (snippet 12866 (sha256
12867 '(begin (delete-file-recursively "win32") 12867 (base32 "0dpznl4h1f5syq5464a0h9grqlvlp0qmjxr59nq3gp363gr5vjfv"))
12868 #t)))) 12868 (modules '((guix build utils)))
12869 (snippet
12870 '(begin
12871 (delete-file-recursively "win32")))))
12869 (build-system cmake-build-system) 12872 (build-system cmake-build-system)
12870 (inputs (list pciutils)) 12873 (inputs (list pciutils))
12871 (arguments 12874 (arguments
12872 (list #:tests? #f ; No test suite 12875 (list
12873 #:phases #~(modify-phases %standard-phases 12876 #:tests? #f ;No test suite
12874 (add-before 'install 'build 12877 #:build-type "Release"))
12875 (lambda _
12876 (invoke "cmake" "-DCMAKE_BUILD_TYPE=Release" "."))))))
12877 (home-page "https://github.com/flygoat/ryzenadj") 12878 (home-page "https://github.com/flygoat/ryzenadj")
12878 (synopsis "Power management tool for AMD Ryzen APUs") 12879 (synopsis "Power management tool for AMD Ryzen APUs")
12879 (description 12880 (description