me
/
guix
Archived
1
0
Fork 0

gnu: Add ryzen-smu.

* gnu/packages/linux.scm (ryzen-smu): New variable.
Danny Milosavljevic 2023-10-10 22:17:44 +02:00
parent fc6c910f79
commit 5a8f9d32f5
No known key found for this signature in database
GPG Key ID: E71A35542C30BAA5
1 changed files with 23 additions and 0 deletions

View File

@ -10506,3 +10506,26 @@ against the several transient execution CVEs that were published since early
(description "The primary purpose of Csmith is to find compiler bugs with (description "The primary purpose of Csmith is to find compiler bugs with
random programs using differential testing.") random programs using differential testing.")
(license license:bsd-4))) (license license:bsd-4)))
(define-public ryzen-smu
(package
(name "ryzen-smu")
(version "0.1.5")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://gitlab.com/leogx9r/ryzen_smu.git")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"010la2a8zp7rljlg5ssc9ragzva4ca05gvzlicjagl508659d2wz"))))
(build-system linux-module-build-system)
(arguments
`(#:tests? #f)) ; no tests
(synopsis "System Management Unit driver for AMD Ryzen processors")
(description "This package provides a way to access the
System Management Unit for certain AMD Ryzen processors.
This includes access to the System Management Network.")
(home-page "https://gitlab.com/leogx9r/ryzen_smu")
(license license:gpl2)))