From 4551b19eb6169da4e41413deee99aec6b142b9ad Mon Sep 17 00:00:00 2001 From: Danny Milosavljevic Date: Sun, 2 Feb 2025 01:21:38 +0100 Subject: [PATCH] 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 --- gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) 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