rekahsoft-gnu: Comment out incomplete yq package

This commit is contained in:
Collin J. Doering 2022-03-19 10:14:09 -04:00
parent e945beeae0
commit f37793231d
Signed by: rekahsoft
GPG Key ID: 7B4DEB93212B3022
1 changed files with 30 additions and 27 deletions

View File

@ -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)))