diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-18 21:45:55 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-18 21:46:03 +0000 |
| commit | 45c4f09220a0abfb1edd72b91cc82435311263eb (patch) | |
| tree | 03eda3fa7a112d8e9974a565bdecc9e1886f73ce | |
| parent | 2ebcf3215a99af1f9245d4fbb2dc0eacdb349729 (diff) | |
gnu: yggdrasil: Move propagated-inputs to native-inputs.
* gnu/packages/networking.scm (yggdrasil):
[phases]: Remove custom {check} and use default.
[propagated-inputs]: Move all inputs from here ...
[native-inputs]: ... to here.
Fixes: guix/guix#6539
Change-Id: I480205eb2d630cb4d110e3a1bf6f500d6a5d1c4a
| -rw-r--r-- | gnu/packages/networking.scm | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 2526a995f0a..1ec9127d351 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -5035,13 +5035,13 @@ implementing them.") (method git-fetch) (uri (git-reference - (url "https://github.com/yggdrasil-network/yggdrasil-go") - (commit (string-append "v" version)) - (recursive? #t))) + (url "https://github.com/yggdrasil-network/yggdrasil-go") + (commit (string-append "v" version)) + (recursive? #t))) (file-name (git-file-name name version)) (sha256 (base32 "072r52b6bkpc7bhn0v1z6dm6q5g9qf4k1xlqwrvzmzwai6fm0lrn")) - (patches (search-patches "yggdrasil-extra-config.patch")))) + (patches (search-patches "yggdrasil-extra-config.patch")))) (build-system go-build-system) (arguments (list #:import-path "github.com/yggdrasil-network/yggdrasil-go" @@ -5063,13 +5063,8 @@ implementing them.") #:import-path directory)) (list "github.com/yggdrasil-network/yggdrasil-go/cmd/yggdrasil" "github.com/yggdrasil-network/yggdrasil-go/cmd/yggdrasilctl" - "github.com/yggdrasil-network/yggdrasil-go/cmd/genkeys"))))) - (replace 'check - (lambda* (#:key tests? import-path #:allow-other-keys) - (when tests? - (with-directory-excursion (string-append "src/" import-path) - (invoke "go" "test" "-v" "./cmd/..." "./src/...")))))))) - (propagated-inputs + "github.com/yggdrasil-network/yggdrasil-go/cmd/genkeys")))))))) + (native-inputs (list ;; go-golang-org-x-mobile ; Not packed yet, for contrib. ;; go-golang-zx2c4-com-wireguard-windows ; Not packed yet, for tun. go-github-com-arceliar-ironwood |
