diff options
author | Oleg Pykhalov <go.wigust@gmail.com> | 2020-08-09 15:43:16 +0300 |
---|---|---|
committer | Oleg Pykhalov <go.wigust@gmail.com> | 2020-08-09 17:19:25 +0300 |
commit | 55ce6fe9b88b071e2ceffd744bb4470d175cb647 (patch) | |
tree | 98c871e637fae3cbf92a563f1ac9d019b56e9ddb | |
parent | bb547efd4cfaa8a897d83d98d67209def627f361 (diff) | |
download | guix-55ce6fe9b88b071e2ceffd744bb4470d175cb647.tar.gz guix-55ce6fe9b88b071e2ceffd744bb4470d175cb647.zip |
gnu: Add go-github-com-pkg-diff.
* gnu/packages/golang.scm (go-github-com-pkg-diff): New variable.
-rw-r--r-- | gnu/packages/golang.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 8eef8d17d2..c767ed6e39 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -5362,3 +5362,29 @@ temporal directories.") (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)))) |