diff options
author | Danny Milosavljevic <[email protected]> | 2025-02-02 01:21:38 +0100 |
---|---|---|
committer | Danny Milosavljevic <[email protected]> | 2025-02-02 01:21:38 +0100 |
commit | 4551b19eb6169da4e41413deee99aec6b142b9ad (patch) | |
tree | 021bbe181067a11bf6aec09162524fdbc8a45291 | |
parent | 336d31b692bce1245acdee5644cc89e26648cbb6 (diff) |
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
-rw-r--r-- | gnu/packages/golang-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 91b225a5a6..ad85f0e1aa 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -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 |