~ruther/guix-local

0bde5e3d0a5f2e3ca14c81a83b0cdd91ad8e77fb — Sharlatan Hellseher 8 months ago 98182c8
gnu: Add go-github-com-facebookgo-flagenv.

* gnu/packages/golang-xyz.scm (go-github-com-facebookgo-flagenv): New variable.

Change-Id: Ia1a706f7d1189f6427698c6a37f599ca13e7c8d0
1 files changed, 25 insertions(+), 0 deletions(-)

M gnu/packages/golang-xyz.scm
M gnu/packages/golang-xyz.scm => gnu/packages/golang-xyz.scm +25 -0
@@ 7070,6 7070,31 @@ in a consistent state and never represent an in-progress write.")
    ;; <...>
    (license license:bsd-3)))

(define-public go-github-com-facebookgo-flagenv
  (package
    (name "go-github-com-facebookgo-flagenv")
    (version "0.0.0-20160425205200-fcd59fca7456")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/facebookarchive/flagenv")
             (commit (go-version->git-ref version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0c7fw4y4gmdrn66dx7la637lx0hvs1w27x9j12wdx037n51r078g"))))
    (build-system go-build-system)
    (arguments
     (list
      #:tests? #f   ;Tests require dated code <github.com/facebookgo/ensure>
      #:import-path "github.com/facebookgo/flagenv"))
    (home-page "https://github.com/facebookgo/flagenv")
    (synopsis "Populate flags from environment variables")
    (description
     "Package flagenv provides the ability to populate flags from environment
variables.")
    (license license:bsd-3)))

(define-public go-github-com-facette-natsort
  (package
    (name "go-github-com-facette-natsort")