guix-commits
[Top][All Lists]
Advanced

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

52/60: gnu: Add go-github-com-twpayne-go-vfs.


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

wigust pushed a commit to branch master
in repository guix.

commit ae110203569647b5dd6230c9c9f9af864da45374
Author: Oleg Pykhalov <go.wigust@gmail.com>
AuthorDate: Sun Aug 9 15:51:12 2020 +0300

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

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index e991e37..b76a71a 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -5410,3 +5410,27 @@ temporal directories.")
     (description
      "Package @code{shell} returns a user's shell across multiple platforms.")
     (license license:expat)))
+
+(define-public go-github-com-twpayne-go-vfs
+  (package
+    (name "go-github-com-twpayne-go-vfs")
+    (version "1.5.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/twpayne/go-vfs";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "19dm3gi45znwaqbzxhwcgkiz8059bwa3ank80hc6qhdl579bpjnz"))))
+    (build-system go-build-system)
+    (arguments
+     `(#:import-path "github.com/twpayne/go-vfs"))
+    (native-inputs
+     `(("go-github-com-bmatcuk-doublestar" ,go-github-com-bmatcuk-doublestar)))
+    (home-page "https://github.com/twpayne/go-vfs/";)
+    (synopsis "Abstraction of the @code{os} and @code{ioutil} Go packages")
+    (description "Package @code{vfs} provides an abstraction of the @code{os}
+and @code{ioutil} packages that is easy to test.")
+    (license license:expat)))



reply via email to

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