diff --git a/rekahsoft-gnu/packages/golang.scm b/rekahsoft-gnu/packages/golang.scm index 80dd187..ac7eb8a 100644 --- a/rekahsoft-gnu/packages/golang.scm +++ b/rekahsoft-gnu/packages/golang.scm @@ -140,30 +140,33 @@ platforms. Gox will also build the cross-compilation toolchain for you.") (home-page "https://github.com/aws/aws-sdk-go") (license license:asl2.0))) -(define-public yq - (package - (name "yq") - (version "4.16.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/mikefarah/yq") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1in11959lxnab01hkbirrjiim4ww8rgzgnj9dfg7wk3dk5zzr3g2")))) - (build-system go-build-system) - (native-inputs - `(("go-github-com-imdario-mergo" ,go-github-com-imdario-mergo) - ("go-github-com-op-go-logging" ,go-github-com-op-go-logging) - ("go-github-com-spf13-cobra" ,go-github-com-spf13-cobra) - ("go-gopkg-in-yaml-v2" ,go-gopkg-in-yaml-v2) - ;; TODO: Missing dependencies - )) - (arguments '(#:import-path "github.com/mikefarah/yq" - #:install-source? #f)) - (home-page "https://github.com/mikefarah/yq") - (synopsis "yq") - (description "a lightweight and portable command-line YAML processor") - (license license:expat))) +;; TODO: this package is not yet complete, but was accidentally +;; committed. Commenting it out until it is completed. +;; +;; (define-public yq +;; (package +;; (name "yq") +;; (version "4.16.1") +;; (source +;; (origin +;; (method git-fetch) +;; (uri (git-reference +;; (url "https://github.com/mikefarah/yq") +;; (commit (string-append "v" version)))) +;; (file-name (git-file-name name version)) +;; (sha256 +;; (base32 "1in11959lxnab01hkbirrjiim4ww8rgzgnj9dfg7wk3dk5zzr3g2")))) +;; (build-system go-build-system) +;; (native-inputs +;; `(("go-github-com-imdario-mergo" ,go-github-com-imdario-mergo) +;; ("go-github-com-op-go-logging" ,go-github-com-op-go-logging) +;; ("go-github-com-spf13-cobra" ,go-github-com-spf13-cobra) +;; ("go-gopkg-in-yaml-v2" ,go-gopkg-in-yaml-v2) +;; ;; TODO: Missing dependencies +;; )) +;; (arguments '(#:import-path "github.com/mikefarah/yq" +;; #:install-source? #f)) +;; (home-page "https://github.com/mikefarah/yq") +;; (synopsis "yq") +;; (description "a lightweight and portable command-line YAML processor") +;; (license license:expat)))