mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
gnu: Add qgit.
* gnu/packages/version-control.scm (qgit): New variable. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
33e3005089
commit
f1df78959a
1 changed files with 36 additions and 1 deletions
|
@ -79,6 +79,7 @@ (define-module (gnu packages version-control)
|
||||||
#:use-module (guix build-system go)
|
#:use-module (guix build-system go)
|
||||||
#:use-module (guix build-system perl)
|
#:use-module (guix build-system perl)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system python)
|
||||||
|
#:use-module (guix build-system qt)
|
||||||
#:use-module (guix build-system trivial)
|
#:use-module (guix build-system trivial)
|
||||||
#:use-module (gnu packages apr)
|
#:use-module (gnu packages apr)
|
||||||
#:use-module (gnu packages autotools)
|
#:use-module (gnu packages autotools)
|
||||||
|
@ -1295,7 +1296,7 @@ (define-public python-gitpython
|
||||||
either a pure Python implementation, or the faster, but more resource intensive
|
either a pure Python implementation, or the faster, but more resource intensive
|
||||||
@command{git} command implementation.")
|
@command{git} command implementation.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public savane
|
(define-public savane
|
||||||
(package
|
(package
|
||||||
(name "savane")
|
(name "savane")
|
||||||
|
@ -3552,6 +3553,40 @@ (define-public tkrev
|
||||||
TkDiff is included for browsing and merging your changes.")
|
TkDiff is included for browsing and merging your changes.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public qgit
|
||||||
|
(package
|
||||||
|
(name "qgit")
|
||||||
|
(version "2.10")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/tibirna/qgit")
|
||||||
|
(commit (string-append "qgit-" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"10j5xll7ai1rb2ybyblbgqm762bqspffpf33fdr61qdchnp2gkf4"))))
|
||||||
|
(build-system qt-build-system)
|
||||||
|
(arguments
|
||||||
|
(list #:tests? #f)) ;no tests
|
||||||
|
(propagated-inputs
|
||||||
|
(list git))
|
||||||
|
(home-page "https://github.com/tibirna/qgit")
|
||||||
|
(synopsis "Graphical front-end for git")
|
||||||
|
(description
|
||||||
|
"Qgit is a graphical front-end for git, with features to:
|
||||||
|
@itemize
|
||||||
|
@item view revisions, diffs, files history, files annotation and archive tree,
|
||||||
|
@item commit changes visually cherry picking modified files,
|
||||||
|
@item apply or save patch series from selected commits, drag and drop commits,
|
||||||
|
@item associate commands sequences, scripts and anything else executable to a
|
||||||
|
custom action,
|
||||||
|
@item push/pop commits,
|
||||||
|
@item apply/save/create patches
|
||||||
|
@item and cherry pick single modified files.
|
||||||
|
@end itemize")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public git-filter-repo
|
(define-public git-filter-repo
|
||||||
(package
|
(package
|
||||||
(name "git-filter-repo")
|
(name "git-filter-repo")
|
||||||
|
|
Loading…
Reference in a new issue