guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: Add go-github-com-kr-fs.


From: Pierre Neidhardt
Subject: 01/03: gnu: Add go-github-com-kr-fs.
Date: Wed, 24 Oct 2018 08:41:57 -0400 (EDT)

ambrevar pushed a commit to branch master
in repository guix.

commit 5b6c3ad0cda0f50843cbaaafc27c0482109b1e23
Author: Pierre Neidhardt <address@hidden>
Date:   Wed Oct 24 14:39:35 2018 +0200

    gnu: Add go-github-com-kr-fs.
    
    * gnu/packages/golang.scm (go-github-com-kr-fs): 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 9b46907..60d3ee7 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -3310,3 +3310,27 @@ fast and distributable command line applications in an 
expressive way.")
       (description "A simple log library, for when you don't really care to
 have super fancy logs.")
       (license license:expat))))
+
+(define-public go-github-com-kr-fs
+  (let ((commit "1455def202f6e05b95cc7bfc7e8ae67ae5141eba")
+        (revision "0"))
+    (package
+      (name "go-github-com-kr-fs")
+      (version (git-version "0.1.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/kr/fs.git";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "11zg176x9hr9q7fsk95r6q0wf214gg4czy02slax4x56n79g6a7q"))))
+      (build-system go-build-system)
+      (arguments
+       '(#:import-path "github.com/kr/fs"))
+      (home-page "https://github.com/kr/fs";)
+      (synopsis "Filesystem-related functions for Go")
+      (description "Package fs provides filesystem-related functions.")
+      (license license:bsd-3))))



reply via email to

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