[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#31463] [PATCH 1/6] gnu: Add go-github-com-burntsushi-toml.
From: |
Rouby Pierre-Antoine |
Subject: |
[bug#31463] [PATCH 1/6] gnu: Add go-github-com-burntsushi-toml. |
Date: |
Tue, 15 May 2018 15:09:20 +0200 |
* gnu/packages/golang.scm (go-github-com-burntsushi-toml): New variable.
---
gnu/packages/golang.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index c6fc68468..9360fe4b2 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -10,6 +10,7 @@
;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
;;; Copyright © 2018 Christopher Baines <address@hidden>
;;; Copyright © 2018 Tomáš Čech <address@hidden>
+;;; Copyright © 2018 Pierre-Antoine Rouby <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1300,3 +1301,30 @@ support functions for dealing with terminals, as
commonly found on UNIX
systems.")
(home-page "https://go.googlesource.com/crypto/")
(license license:bsd-3))))
+
+(define-public go-github-com-burntsushi-toml
+ (let ((commit
+ "a368813c5e648fee92e5f6c30e3944ff9d5e8895")
+ (revision "0"))
+ (package
+ (name "go-github-com-burntsushi-toml")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/BurntSushi/toml.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1sjxs2lwc8jpln80s4rlzp7nprbcljhy5mz4rf9995gq93wqnym5"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/BurntSushi/toml"))
+ (home-page "https://github.com/BurntSushi/toml")
+ (synopsis "Toml parsre and encoder for Go")
+ (description "This package is toml parser and encoder for Go. This
+package interface similar to Go's standard library @code{json} and @code{xml}
+package.")
+ (license license:expat))))
--
2.17.0
- [bug#31463] [PATCH 1/6] gnu: Add go-github-com-burntsushi-toml.,
Rouby Pierre-Antoine <=
- [bug#31463] [PATCH 2/6] gnu: Add go-github-com-getsentry-raven-go., Rouby Pierre-Antoine, 2018/05/15
- [bug#31463] [PATCH 3/6] gnu: Add go-github-com-hashicorp-go-version., Rouby Pierre-Antoine, 2018/05/15
- [bug#31463] [PATCH 4/6] gnu: Add go-github-com-jpillora-backoff., Rouby Pierre-Antoine, 2018/05/15
- [bug#31463] [PATCH 5/6] gnu: Add go-github-com-stretchr-testify., Rouby Pierre-Antoine, 2018/05/15
- [bug#31463] [PATCH 6/6] gnu: Add go-github-com-tevino-abool., Rouby Pierre-Antoine, 2018/05/15
- bug#31463: [PATCH 1/6] gnu: Add go-github-com-burntsushi-toml., Ludovic Courtès, 2018/05/23