~ruther/guix-local

4551b19eb6169da4e41413deee99aec6b142b9ad — Danny Milosavljevic 1 year, 1 month ago 336d31b
gnu: Add go-github-com-kevinmbeaulieu-eq-go-eq-go.

* gnu/packages/golang-xyz.scm (go-github-com-kevinmbeaulieu-eq-go-eq-go):
New variable.

Change-Id: Ieab9c041a4fd29a8e7d2149528eb91499a61de2e
1 files changed, 25 insertions(+), 0 deletions(-)

M gnu/packages/golang-xyz.scm
M gnu/packages/golang-xyz.scm => gnu/packages/golang-xyz.scm +25 -0
@@ 17711,6 17711,31 @@ editor.")
another, typically to convert a map[string]interface{} into a native Go
structure.")
    (license license:expat)))

(define-public go-github-com-kevinmbeaulieu-eq-go-eq-go
  (package
    (name "go-github-com-kevinmbeaulieu-eq-go-eq-go")
    (version "1.0.0")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/kevinmbeaulieu/eq-go")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0gc2r1yrjg206swlx1vrvb92s2m1y6752yhbh869h2m47q2p4y38"))))
    (build-system go-build-system)
    (arguments
     (list
      #:unpack-path "github.com/kevinmbeaulieu/eq-go"
      #:import-path "github.com/kevinmbeaulieu/eq-go/eq-go"))
    (home-page "https://github.com/kevinmbeaulieu/eq-go")
    (synopsis "eq[uivalent]-go")
    (description
     "This package provides a way to check whether two Go source directories
contain equivalent code.")
    (license license:asl2.0)))
;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar