gnu: earlyoom: Only build with pandoc on certain systems.
* gnu/packages/linux.scm (earlyoom)[native-inputs]: Only use pandoc on x86_64-linux and i686-linux.
parent
720baa1e0b
commit
a275ef3966
|
@ -3756,12 +3756,15 @@ from the module-init-tools project.")
|
||||||
"GO111MODULE=off")
|
"GO111MODULE=off")
|
||||||
#:test-target "test"))
|
#:test-target "test"))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
(append
|
||||||
|
;; To generate the manpage.
|
||||||
|
(if (or (target-x86-64?) (target-x86-32?))
|
||||||
|
(list pandoc)
|
||||||
|
'())
|
||||||
(list
|
(list
|
||||||
;; For the test suite.
|
;; For the test suite.
|
||||||
cppcheck
|
cppcheck
|
||||||
go
|
go)))
|
||||||
;; To generate the manpage.
|
|
||||||
pandoc))
|
|
||||||
(home-page "https://github.com/rfjakob/earlyoom")
|
(home-page "https://github.com/rfjakob/earlyoom")
|
||||||
(synopsis "Simple out of memory (OOM) daemon for the Linux kernel")
|
(synopsis "Simple out of memory (OOM) daemon for the Linux kernel")
|
||||||
(description "Early OOM is a minimalist out of memory (OOM) daemon that
|
(description "Early OOM is a minimalist out of memory (OOM) daemon that
|
||||||
|
|
Reference in New Issue