diff options
author | Sharlatan Hellseher <[email protected]> | 2025-01-28 20:29:43 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-28 22:26:12 +0000 |
commit | 3beba6c594e639e2695e3eb498c9905cb04083bc (patch) | |
tree | 6c1246ab33c092354185f749f3a6e2d4195440c3 | |
parent | e90bd12f49e08f4d30007e80eaf5649ef98b5517 (diff) |
gnu: go-github-com-opencontainers-runtime-spec: Enable tests.
* gnu/packages/golang-xyz.scm (go-github-com-opencontainers-runtime-spec)
[arguments] <skip-tests?>: No go files in project's root.
<phases>: Preserve 'build and 'check.
[native-inputs]: Add go-github-com-xeipuuv-gojsonschema.
Change-Id: Ic170a7de808577ae7c783f8fc29cf9e7d92c37b6
-rw-r--r-- | gnu/packages/golang-xyz.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 02dc48c422..4bc71932ec 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -11984,10 +11984,9 @@ container image format spec (OCI Image Format).") (arguments (list #:import-path "github.com/opencontainers/runtime-spec" - #:phases - #~(modify-phases %standard-phases - (delete 'build) - (delete 'check)))) + #:skip-build? #t)) + (native-inputs + (list go-github-com-xeipuuv-gojsonschema)) (home-page "https://github.com/opencontainers/runtime-spec") (synopsis "OCI specs implementation in Golang") (description |