guix-commits
[Top][All Lists]
Advanced

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

54/60: gnu: Add go-github-com-twpayne-go-xdg.


From: guix-commits
Subject: 54/60: gnu: Add go-github-com-twpayne-go-xdg.
Date: Sun, 9 Aug 2020 10:25:06 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit e3997ad79712f2c08f5fe23c1744456ac8d0eedf
Author: Oleg Pykhalov <go.wigust@gmail.com>
AuthorDate: Sun Aug 9 15:59:13 2020 +0300

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

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 48ff32a..1c5464c 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -5460,3 +5460,28 @@ and @code{ioutil} packages that is easy to test.")
      "Package @code{vfsafero} provides a compatibility later between
 @code{go-github-com-twpayne-go-vfs} and @code{go-github-com-spf13-afero}.")
     (license license:expat)))
+
+(define-public go-github-com-twpayne-go-xdg
+  (package
+    (name "go-github-com-twpayne-go-xdg")
+    (version "3.1.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/twpayne/go-xdg";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0j8q7yzixs6jlaad0lpa8hs6b240gm2cmy0yxgnprrbpa0y2r7ln"))))
+    (build-system go-build-system)
+    (arguments
+     `(#:import-path "github.com/twpayne/go-xdg/v3"))
+    (native-inputs
+     `(("go-github-com-stretchr-testify" ,go-github-com-stretchr-testify)
+       ("go-github-com-twpayne-go-vfs" ,go-github-com-twpayne-go-vfs)))
+    (home-page "https://github.com/twpayne/go-xdg/";)
+    (synopsis "Functions related to freedesktop.org")
+    (description "Package @code{xdg} provides functions related to
+@uref{freedesktop.org}.")
+    (license license:expat)))



reply via email to

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