guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

31/60: gnu: Add go-github-com-coreos-go-semver.


From: guix-commits
Subject: 31/60: gnu: Add go-github-com-coreos-go-semver.
Date: Sun, 9 Aug 2020 10:24:59 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit b955cd4a142fd58bfdd46a176b90323aaf552c76
Author: Oleg Pykhalov <go.wigust@gmail.com>
AuthorDate: Sun Aug 9 01:20:10 2020 +0300

    gnu: Add go-github-com-coreos-go-semver.
    
    * gnu/packages/golang.scm (go-github-com-coreos-go-semver): New variable.
---
 gnu/packages/golang.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 9b46912..9a5e8b8 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -5021,3 +5021,25 @@ escape sequences and color conversions.")
 templates on ANSI compatible terminals.  You can create your own stylesheet or
 use one of our glamourous default themes.")
     (license license:expat)))
+
+(define-public go-github-com-coreos-go-semver
+  (package
+    (name "go-github-com-coreos-go-semver")
+    (version "0.3.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/coreos/go-semver";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0770h1mpig2j5sbiha3abnwaw8p6dg9i87r8pc7cf6m4kwml3sc9"))))
+    (build-system go-build-system)
+    (arguments
+     `(#:import-path "github.com/coreos/go-semver"))
+    (home-page "https://github.com/coreos/go-semver/";)
+    (synopsis "Semantic versioning library")
+    (description "@code{go-semver} is a semantic versioning library for Go.
+It lets you parse and compare two semantic version strings.")
+    (license license:asl2.0)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]