diff options
author | Rouby Pierre-Antoine <pierre-antoine.rouby@inria.fr> | 2018-05-31 17:38:35 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-06-11 15:19:01 +0200 |
commit | bcb21790857e967ff25bf386126e3b70bed50132 (patch) | |
tree | d0b9876048a9a0d323509aceae2af6c57a151114 /gnu/packages | |
parent | e8cdf560b0fd4a544e335107e2b32fb7e63524e2 (diff) | |
download | guix-bcb21790857e967ff25bf386126e3b70bed50132.tar guix-bcb21790857e967ff25bf386126e3b70bed50132.tar.gz |
gnu: Add go-github-com-jonboulle-clockwork.
* gnu/packages/golang.scm (go-github-com-jonboulle-clockwork): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages')
-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 da87be1f83..0bdd3803fd 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1647,3 +1647,29 @@ values for the purpose of fuzz testing.") "Gorilla/Mux implements a request router and dispatcher for matching incoming requests with their respective handler.") (license license:bsd-3)))) + +(define-public go-github-com-jonboulle-clockwork + (let ((commit "e3653ace2d63753697e0e5b07b9393971c0bba9d") + (revision "0")) + (package + (name "go-github-com-jonboulle-clockwork") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jonboulle/clockwork.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1avzqhks12a8x2yzpvjsf3k0gv9cy7zx2z88hn0scacnxkphisvc")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/jonboulle/clockwork")) + (home-page "https://github.com/jonboulle/clockwork") + (synopsis "Fake clock library for Go") + (description + "Replace uses of the @code{time} package with the +@code{clockwork.Clock} interface instead.") + (license license:asl2.0)))) |