~ruther/guix-local

b0d44b0aa45acc89e1592c310451dae36993337b — Sharlatan Hellseher 6 months ago 9151388
gnu: Add go-github-com-natefinch-atomic.

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

Change-Id: Iac7feb25f41a3305e6df471975bf570ae1b74c2b
1 files changed, 24 insertions(+), 0 deletions(-)

M gnu/packages/golang-xyz.scm
M gnu/packages/golang-xyz.scm => gnu/packages/golang-xyz.scm +24 -0
@@ 15283,6 15283,30 @@ varints.")
@url{https://firebirdsql.org/, Firebird} RDBMS.")
    (license license:expat)))

(define-public go-github-com-natefinch-atomic
  (package
    (name "go-github-com-natefinch-atomic")
    (version "1.0.1")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/natefinch/atomic")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0y1hr9smjfwp3zgn8s9njp84x9m42x3a7f1h2q7qyd0i5hf9bcvx"))))
    (build-system go-build-system)
    (arguments
     (list
      #:import-path "github.com/natefinch/atomic"))
    (home-page "https://github.com/natefinch/atomic")
    (synopsis "Atomic file writing in Golang")
    (description
     "This package provides functions to atomically change files, by writing
first to a temp file, and then overwriting the target file in an atomic way.")
    (license license:expat)))

(define-public go-github-com-nathan-osman-go-sunrise
  (package
    (name "go-github-com-nathan-osman-go-sunrise")