gnu: Add edac-utils.

* gnu/packages/linux.scm (edac-utils): New variable.
This commit is contained in:
Danny Milosavljevic 2022-11-09 23:02:17 +01:00
parent 63b7dbc732
commit a827905302
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -9510,3 +9510,27 @@ (define-public kconfig-hardened-check
@end itemize\n @end itemize\n
This tool supports checking Kconfig options and kernel cmdline parameters.") This tool supports checking Kconfig options and kernel cmdline parameters.")
(license license:gpl3))) (license license:gpl3)))
(define-public edac-utils
(package
(name "edac-utils")
(version "0.18")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/grondo/edac-utils.git")
(commit version)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"04j686m58wsnyy5di7rz0sw9jahlm4ziwxjmgs31pjb87vzw3xgp"))))
(build-system gnu-build-system)
(native-inputs
(list perl))
(inputs
(list sysfsutils))
(synopsis "Memory error detection and correction userspace helpers")
(description "This package provides userspace helpers for memory
error detection and correction (EDAC).")
(home-page "https://github.com/grondo/edac-utils")
(license license:gpl2+)))