mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 22:16:32 +01:00
gnu: syncthing: Invoke build steps with INVOKE.
* gnu/packages/syncthing.scm (syncthing)[arguments]: Use INVOKE.
This commit is contained in:
parent
146c3b2160
commit
1feaca62d3
1 changed files with 2 additions and 2 deletions
|
@ -65,12 +65,12 @@ (define-public syncthing
|
||||||
(replace 'build
|
(replace 'build
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(with-directory-excursion "src/github.com/syncthing/syncthing"
|
(with-directory-excursion "src/github.com/syncthing/syncthing"
|
||||||
(zero? (system* "go" "run" "build.go" "-no-upgrade")))))
|
(invoke "go" "run" "build.go" "-no-upgrade"))))
|
||||||
|
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda _
|
||||||
(with-directory-excursion "src/github.com/syncthing/syncthing"
|
(with-directory-excursion "src/github.com/syncthing/syncthing"
|
||||||
(zero? (system* "go" "run" "build.go" "test")))))
|
(invoke "go" "run" "build.go" "test"))))
|
||||||
|
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
|
Loading…
Reference in a new issue