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") (home-page "https://github.com/aws/aws-sdk-go")
(license license:asl2.0))) (license license:asl2.0)))
(define-public yq ;; TODO: this package is not yet complete, but was accidentally
(package ;; committed. Commenting it out until it is completed.
(name "yq") ;;
(version "4.16.1") ;; (define-public yq
(source ;; (package
(origin ;; (name "yq")
(method git-fetch) ;; (version "4.16.1")
(uri (git-reference ;; (source
(url "https://github.com/mikefarah/yq") ;; (origin
(commit (string-append "v" version)))) ;; (method git-fetch)
(file-name (git-file-name name version)) ;; (uri (git-reference
(sha256 ;; (url "https://github.com/mikefarah/yq")
(base32 "1in11959lxnab01hkbirrjiim4ww8rgzgnj9dfg7wk3dk5zzr3g2")))) ;; (commit (string-append "v" version))))
(build-system go-build-system) ;; (file-name (git-file-name name version))
(native-inputs ;; (sha256
`(("go-github-com-imdario-mergo" ,go-github-com-imdario-mergo) ;; (base32 "1in11959lxnab01hkbirrjiim4ww8rgzgnj9dfg7wk3dk5zzr3g2"))))
("go-github-com-op-go-logging" ,go-github-com-op-go-logging) ;; (build-system go-build-system)
("go-github-com-spf13-cobra" ,go-github-com-spf13-cobra) ;; (native-inputs
("go-gopkg-in-yaml-v2" ,go-gopkg-in-yaml-v2) ;; `(("go-github-com-imdario-mergo" ,go-github-com-imdario-mergo)
;; TODO: Missing dependencies ;; ("go-github-com-op-go-logging" ,go-github-com-op-go-logging)
)) ;; ("go-github-com-spf13-cobra" ,go-github-com-spf13-cobra)
(arguments '(#:import-path "github.com/mikefarah/yq" ;; ("go-gopkg-in-yaml-v2" ,go-gopkg-in-yaml-v2)
#:install-source? #f)) ;; ;; TODO: Missing dependencies
(home-page "https://github.com/mikefarah/yq") ;; ))
(synopsis "yq") ;; (arguments '(#:import-path "github.com/mikefarah/yq"
(description "a lightweight and portable command-line YAML processor") ;; #:install-source? #f))
(license license:expat))) ;; (home-page "https://github.com/mikefarah/yq")
;; (synopsis "yq")
;; (description "a lightweight and portable command-line YAML processor")
;; (license license:expat)))