diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2022-11-09 23:02:17 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2022-11-09 23:04:22 +0100 |
commit | a827905302705ac2d7e75a24e9b796a59889403b (patch) | |
tree | 44f933a68dd7d392ec7447b6c3dcd6420c1f4c42 /gnu | |
parent | 63b7dbc7327ba7c86781f0ceeaccf1b832219f09 (diff) |
gnu: Add edac-utils.
* gnu/packages/linux.scm (edac-utils): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/linux.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 535780cd2e..35ddc55433 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -9510,3 +9510,27 @@ suggestions from various sources, including: @end itemize\n This tool supports checking Kconfig options and kernel cmdline parameters.") (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+))) |