mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-16 12:00:35 +02:00
gnu: Add go-github-com-oklog-ulid-v2.
* gnu/packages/golang-xyz.scm (go-github-com-oklog-ulid-v2, go-ulid): New variables. Change-Id: I6512659023330ab1ff03bc9c2e43e3ad92a30490
This commit is contained in:
parent
f705f4b42f
commit
62d7440b26
1 changed files with 34 additions and 0 deletions
|
@ -5118,6 +5118,24 @@ millisecond)
|
||||||
@end itemize")
|
@end itemize")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public go-github-com-oklog-ulid-v2
|
||||||
|
(package
|
||||||
|
(inherit go-github-com-oklog-ulid)
|
||||||
|
(name "go-github-com-oklog-ulid-v2")
|
||||||
|
(version "2.1.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/oklog/ulid")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1pxjrg48zrmzzdjpsz7b2d56x1vwix2wywgbbv3sdi5mqf0hz17y"))))
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/oklog/ulid/v2"))))
|
||||||
|
|
||||||
(define-public go-github-com-op-go-logging
|
(define-public go-github-com-op-go-logging
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-op-go-logging")
|
(name "go-github-com-op-go-logging")
|
||||||
|
@ -6863,6 +6881,22 @@ tool."))))
|
||||||
" This package provides an command line interface (CLI)
|
" This package provides an command line interface (CLI)
|
||||||
tool."))))
|
tool."))))
|
||||||
|
|
||||||
|
(define-public go-ulid
|
||||||
|
(package
|
||||||
|
(inherit go-github-com-oklog-ulid-v2)
|
||||||
|
(name "go-ulid")
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:install-source? #f
|
||||||
|
#:import-path "github.com/oklog/ulid/v2/cmd/ulid"
|
||||||
|
#:unpack-path "github.com/oklog/ulid/v2"))
|
||||||
|
(native-inputs
|
||||||
|
(list go-github-com-pborman-getopt))
|
||||||
|
(description
|
||||||
|
(string-append (package-description go-github-com-oklog-ulid)
|
||||||
|
" This package provides an command line interface (CLI)
|
||||||
|
tool."))))
|
||||||
|
|
||||||
;;;
|
;;;
|
||||||
;;; Avoid adding new packages to the end of this file. To reduce the chances
|
;;; Avoid adding new packages to the end of this file. To reduce the chances
|
||||||
;;; of a merge conflict, place them above by existing packages with similar
|
;;; of a merge conflict, place them above by existing packages with similar
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue