mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: earlyoom: Move snippet to make-flag.
* gnu/packages/linux.scm (earlyoom)[source]: Remove snippet. [arguments]: Add makeflag to not use go111modules.
This commit is contained in:
parent
160d0d7923
commit
130703f8c5
1 changed files with 3 additions and 9 deletions
|
@ -3732,14 +3732,7 @@ (define-public earlyoom
|
|||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"16iyn51xlrsbshc7p5xl2338yyfzknaqc538sa7mamgccqwgyvvq"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
'(begin
|
||||
(substitute* "Makefile"
|
||||
(("go test -v")
|
||||
"GO111MODULE=off go test -v"))
|
||||
#t))))
|
||||
"16iyn51xlrsbshc7p5xl2338yyfzknaqc538sa7mamgccqwgyvvq"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
|
@ -3760,7 +3753,8 @@ (define-public earlyoom
|
|||
(list ,(string-append "CC=" (cc-for-target))
|
||||
(string-append "VERSION=v" ,version)
|
||||
(string-append "PREFIX=" prefix)
|
||||
(string-append "SYSCONFDIR=" prefix "/etc")))
|
||||
(string-append "SYSCONFDIR=" prefix "/etc")
|
||||
"GO111MODULE=off"))
|
||||
#:test-target "test"))
|
||||
(native-inputs
|
||||
(list
|
||||
|
|
Loading…
Reference in a new issue