me
/
guix
Archived
1
0
Fork 0

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.
Efraim Flashner 2022-01-13 15:06:02 +02:00
parent 720baa1e0b
commit a275ef3966
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 8 additions and 5 deletions

View File

@ -3756,12 +3756,15 @@ from the module-init-tools project.")
"GO111MODULE=off") "GO111MODULE=off")
#:test-target "test")) #:test-target "test"))
(native-inputs (native-inputs
(list (append
;; For the test suite.
cppcheck
go
;; To generate the manpage. ;; To generate the manpage.
pandoc)) (if (or (target-x86-64?) (target-x86-32?))
(list pandoc)
'())
(list
;; For the test suite.
cppcheck
go)))
(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