diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2019-11-24 07:08:29 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2019-11-24 07:08:29 +0300 |
| commit | c3251e6febf2eec0679cdc625ae45e618ef51e41 (patch) | |
| tree | c9d61bee958c512ccb90e115c2832db07d31aa82 | |
| parent | guix: Add games. (diff) | |
| download | guix-wigust-c3251e6febf2eec0679cdc625ae45e618ef51e41.tar.gz | |
guix: Add git-quick-stats.
* guix/wigust/packages/admin.scm (git-quick-stats): New variable.
| -rw-r--r-- | guix/wigust/packages/admin.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/guix/wigust/packages/admin.scm b/guix/wigust/packages/admin.scm index 9ed804f..992058e 100644 --- a/guix/wigust/packages/admin.scm +++ b/guix/wigust/packages/admin.scm @@ -93,3 +93,36 @@ (synopsis "Command prefixing for continuous workflow using a single tool") (description "This package provides command prefixing for continuous workflow using a single tool.") (license license:asl2.0)))) + +(define-public git-quick-stats + (package + (name "git-quick-stats") + (version "2.0.11") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/arzzen/git-quick-stats.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "19chwnc936bxf0bnxsvw6nhfxnj0216jx9ajjckw3q440l932799")))) + (build-system trivial-build-system) + (inputs + `(("bash" ,bash))) + (arguments + `(#:modules ((guix build utils)) + #:builder + (begin + (use-modules (guix build utils)) + (copy-recursively (assoc-ref %build-inputs "source") ".") + (substitute* "git-quick-stats" + (("/usr/bin/env bash") (string-append (assoc-ref %build-inputs "bash") + "/bin/bash"))) + (install-file "git-quick-stats" (string-append %output "/bin")) + #t))) + (home-page "https://github.com/arzzen/git-quick-stats/") + (synopsis "Git quick statistics") + (description "This package provides a Git quick statistics is a simple and +efficient way to access various statistics in git repository.") + (license license:expat))) |
