guix-commits
[Top][All Lists]
Advanced

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

02/03: gnu: Move go-github-com-kardianos-osext to (gnu packages golang).


From: Leo Famulari
Subject: 02/03: gnu: Move go-github-com-kardianos-osext to (gnu packages golang).
Date: Wed, 20 Jun 2018 12:55:10 -0400 (EDT)

lfam pushed a commit to branch master
in repository guix.

commit 5cc2b8456fab4f1057526d73cc2250436d7bd424
Author: Leo Famulari <address@hidden>
Date:   Wed Jun 20 12:40:29 2018 -0400

    gnu: Move go-github-com-kardianos-osext to (gnu packages golang).
    
    This package will not be used in later versions of Syncthing but may be 
needed
    by other Go programs.
    
    * gnu/packages/syncthing.scm (go-github-com-kardianos-osext): Move to ...
    * gnu/packages/golang.scm: ... here.
---
 gnu/packages/golang.scm    | 28 ++++++++++++++++++++++++++++
 gnu/packages/syncthing.scm | 28 ----------------------------
 2 files changed, 28 insertions(+), 28 deletions(-)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index f7653a8..22da7cc 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1732,3 +1732,31 @@ GNU extensions} to the POSIX recommendations for 
command-line options.")
     (description "Logrus is a structured logger for Go, completely API
 compatible with the standard library logger.")
     (license license:expat)))
+
+(define-public go-github-com-kardianos-osext
+  (let ((commit "ae77be60afb1dcacde03767a8c37337fad28ac14")
+        (revision "1"))
+    (package
+      (name "go-github-com-kardianos-osext")
+      (version (git-version "0.0.0" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/kardianos/osext";)
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "056dkgxrqjj5r18bnc3knlpgdz5p3yvp12y4y978hnsfhwaqvbjz"))))
+      (build-system go-build-system)
+      (arguments
+       `(#:import-path "github.com/kardianos/osext"
+         ;; The tests are flaky:
+         ;; <https://github.com/kardianos/osext/issues/21>
+         #:tests? #f))
+      (synopsis "Find the running executable")
+      (description "Osext provides a method for finding the current executable
+file that is running.  This can be used for upgrading the current executable or
+finding resources located relative to the executable file.")
+      (home-page "https://github.com/kardianos/osext";)
+      (license license:bsd-3))))
diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm
index f43c517..14e83b5 100644
--- a/gnu/packages/syncthing.scm
+++ b/gnu/packages/syncthing.scm
@@ -490,34 +490,6 @@ address of the default LAN gateway.")
       (home-page "https://github.com/jackpal/gateway";)
       (license bsd-3))))
 
-(define-public go-github-com-kardianos-osext
-  (let ((commit "ae77be60afb1dcacde03767a8c37337fad28ac14")
-        (revision "1"))
-    (package
-      (name "go-github-com-kardianos-osext")
-      (version (git-version "0.0.0" revision commit))
-      (source (origin
-                (method git-fetch)
-                (uri (git-reference
-                      (url "https://github.com/kardianos/osext";)
-                      (commit commit)))
-                (file-name (git-file-name name version))
-                (sha256
-                 (base32
-                  "056dkgxrqjj5r18bnc3knlpgdz5p3yvp12y4y978hnsfhwaqvbjz"))))
-      (build-system go-build-system)
-      (arguments
-       `(#:import-path "github.com/kardianos/osext"
-         ;; The tests are flaky:
-         ;; <https://github.com/kardianos/osext/issues/21>
-         #:tests? #f))
-      (synopsis "Find the running executable")
-      (description "Osext provides a method for finding the current executable
-file that is running.  This can be used for upgrading the current executable or
-finding resources located relative to the executable file.")
-      (home-page "https://github.com/kardianos/osext";)
-      (license bsd-3))))
-
 (define-public go-github-com-lib-pq
   (let ((commit "83612a56d3dd153a94a629cd64925371c9adad78")
         (revision "1"))



reply via email to

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