Browse Source
gnu: syncthing: Invoke build steps with INVOKE.
* gnu/packages/syncthing.scm (syncthing)[arguments]: Use INVOKE.
wip-ipfs
Leo Famulari
4 years ago
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with
2 additions and
2 deletions
-
gnu/packages/syncthing.scm
|
|
@ -65,12 +65,12 @@ |
|
|
|
(replace 'build |
|
|
|
(lambda* (#:key inputs #:allow-other-keys) |
|
|
|
(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 |
|
|
|
(lambda _ |
|
|
|
(with-directory-excursion "src/github.com/syncthing/syncthing" |
|
|
|
(zero? (system* "go" "run" "build.go" "test"))))) |
|
|
|
(invoke "go" "run" "build.go" "test")))) |
|
|
|
|
|
|
|
(replace 'install |
|
|
|
(lambda* (#:key outputs #:allow-other-keys) |
|
|
|