From bd57719cd5f3e2b761ea2b26a4190f285086cd11 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Wed, 1 Jan 2025 14:49:01 +0000 Subject: [PATCH] gnu: go-github-com-pmezard-go-difflib: Move to golang-xyz. * gnu/packages/golang.scm (go-github-com-pmezard-go-difflib): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. Change-Id: Ib9997937ae65d40d23cc1e6b03efb2772bba94bc --- gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++ gnu/packages/golang.scm | 22 ---------------------- 2 files changed, 24 insertions(+), 22 deletions(-) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 87e25f34ed..516c39d8af 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -10159,6 +10159,30 @@ defined, its value may be empty or non-empty. You can find more details here: https://en.wikipedia.org/wiki/Extended_file_attributes}.") (license license:bsd-2))) +(define-public go-github-com-pmezard-go-difflib + (package + (name "go-github-com-pmezard-go-difflib") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pmezard/go-difflib") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/pmezard/go-difflib/difflib" + #:unpack-path "github.com/pmezard/go-difflib/")) + (home-page "https://github.com/pmezard/go-difflib") + (synopsis "Go diff implementation") + (description + "This package provides unified and context-aware diffs in Go.") + (license license:bsd-3))) + (define-public go-github-com-polydawn-refmt (package (name "go-github-com-polydawn-refmt") diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index bb42a8f2d7..b850eced26 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -3289,28 +3289,6 @@ GIT_TRACE mechanism.") anchor names.") (license license:expat))) -(define-public go-github-com-pmezard-go-difflib - (package - (name "go-github-com-pmezard-go-difflib") - (version "1.0.0") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pmezard/go-difflib") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw")))) - (build-system go-build-system) - (arguments - '(#:import-path "github.com/pmezard/go-difflib/difflib" - #:unpack-path "github.com/pmezard/go-difflib/")) - (home-page "https://github.com/pmezard/go-difflib") - (synopsis "Go diff implementation") - (description "This package provides unified and context-aware diffs in Go.") - (license license:bsd-3))) - (define-public go-github-com-whyrusleeping-progmeter (let ((commit "f3e57218a75b913eff88d49a52c1debf9684ea04") (revision "0"))