guix-commits
[Top][All Lists]
Advanced

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

12/20: gnu: Add go-github-com-songmu-gitconfig.


From: guix-commits
Subject: 12/20: gnu: Add go-github-com-songmu-gitconfig.
Date: Sun, 3 Jan 2021 10:25:02 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 79d5a18116d597df9e3d6b607164947d3aed6c2f
Author: Joseph LaFreniere <joseph@lafreniere.xyz>
AuthorDate: Mon Jul 27 00:12:06 2020 -0500

    gnu: Add go-github-com-songmu-gitconfig.
    
    * gnu/packages/golang.scm (go-github-com-songmu-gitconfig): New variable.
    
    Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
---
 gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 1252943..60535e0 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -6542,3 +6542,29 @@ modifying them.")
 compressed streams in Go.")
     (home-page "https://github.com/ulikunitz/xz";)
     (license license:bsd-3)))
+
+(define-public go-github-com-songmu-gitconfig
+  (package
+    (name "go-github-com-songmu-gitconfig")
+    (version "0.1.0")
+    (home-page "https://github.com/songmu/gitconfig";)
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url home-page)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1y01h496a7pfj1g2bclls5b0nl3vnj7nz610jj1dzq9kxrwxk7fk"))))
+    (build-system go-build-system)
+    (arguments
+     `(#:import-path "github.com/Songmu/gitconfig"
+       ;; Package's tests appear to be hardcoded to the author's gitconfig
+       ;; and require network access.
+       #:tests? #f))
+    (propagated-inputs
+     `(("go-github-com-goccy-yaml" ,go-github-com-goccy-yaml)))
+    (synopsis "Go library to get configuration values from gitconfig")
+    (description "@{gitconfig} is a package to get configuration values from 
gitconfig.")
+    (license license:expat)))



reply via email to

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