mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
gnu: rasdaemon: Update to 0.8.0.
* gnu/packages/linux.scm (rasdaemon): Update to 0.8.0. [inputs]: Add pkg-config, libtraceevent. [arguments]: Rename README.md to README. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
b6a1b61f00
commit
797083fc7f
1 changed files with 8 additions and 4 deletions
|
@ -9642,7 +9642,7 @@ (define-public erofs-utils
|
|||
(define-public rasdaemon
|
||||
(package
|
||||
(name "rasdaemon")
|
||||
(version "0.7.0")
|
||||
(version "0.8.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -9651,9 +9651,9 @@ (define-public rasdaemon
|
|||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1a3ycx1g2zyshlna9fg8c9329m8wia42vkmlh2awfab0ngwi3g50"))))
|
||||
(native-inputs (list autoconf automake libtool))
|
||||
(inputs (list perl perl-dbd-sqlite sqlite dmidecode kmod))
|
||||
(base32 "0m3j1hz9rqcvwmrimpakd239s0ppzaplkykhf9wyh55xmmry8z85"))))
|
||||
(native-inputs (list autoconf automake libtool pkg-config))
|
||||
(inputs (list libtraceevent perl perl-dbd-sqlite sqlite dmidecode kmod))
|
||||
(arguments
|
||||
(list
|
||||
#:configure-flags
|
||||
|
@ -9663,6 +9663,10 @@ (define-public rasdaemon
|
|||
"--localstatedir=/var")
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'rename-README
|
||||
(lambda _
|
||||
;; Required by autoreconf
|
||||
(rename-file "README.md" "README")))
|
||||
(add-before 'configure 'munge-autotools
|
||||
(lambda _
|
||||
;; For some reason upstream forces sysconfdir=/etc. This results
|
||||
|
|
Loading…
Reference in a new issue