1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 20:10:39 +02:00

gnu: Add go-github-com-pmezard-go-difflib.

* gnu/packages/golang.scm (go-github-com-pmezard-go-difflib): New variable.
This commit is contained in:
Leo Famulari 2020-02-13 16:54:04 -05:00
parent df14a8b67d
commit 3c06b06034
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -2490,6 +2490,28 @@ building command line apps in Go. The goal is to enable developers to write
fast and distributable command line applications in an expressive way.") fast and distributable command line applications in an expressive way.")
(license license:expat))) (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-json-filter (define-public go-github-com-whyrusleeping-json-filter
(let ((commit "ff25329a9528f01c5175414f16cc0a6a162a5b8b") (let ((commit "ff25329a9528f01c5175414f16cc0a6a162a5b8b")
(revision "0")) (revision "0"))