gnu: Add go-github-com-pkg-diff.

* gnu/packages/golang.scm (go-github-com-pkg-diff): New variable.
This commit is contained in:
Oleg Pykhalov 2020-08-09 15:43:16 +03:00
parent bb547efd4c
commit 55ce6fe9b8
No known key found for this signature in database
GPG key ID: 167F8EA5001AFA9C

View file

@ -5362,3 +5362,29 @@ (define-public go-github-com-go-git-go-git-fixtures
(synopsis "Fixtures used by @code{go-git}")
(description "This package provides fixtures used by @code{go-git}.")
(license license:asl2.0)))
(define-public go-github-com-pkg-diff
(let ((commit "531926345625d489a6b56f860a569e68245ace36")
(revision "1"))
(package
(name "go-github-com-pkg-diff")
(version (git-version "0.0.1" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/pkg/diff")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"1770m7qhww6lm0wj1v3mhv6hwa2v92p4w2fqxj1xyrg5dd58d944"))))
(build-system go-build-system)
(arguments
`(#:import-path "github.com/pkg/diff"))
(native-inputs
`(("go-github-com-sergi-go-diff" ,go-github-com-sergi-go-diff)))
(home-page "https://github.com/pkg/diff/")
(synopsis "Create and print diffs")
(description
"This package provides a Go library to create and print diffs.")
(license license:bsd-3))))