mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: Add python-icdiff.
* gnu/packages/python-xyz.scm (python-icdiff): New variable. Signed-off-by: Julien Lepiller <julien@lepiller.eu>
This commit is contained in:
parent
13c1ed6a19
commit
d46e955d93
1 changed files with 20 additions and 0 deletions
|
@ -19684,6 +19684,26 @@ (define-public python-diff-match-patch
|
||||||
perform the operations required for synchronizing plain text.")
|
perform the operations required for synchronizing plain text.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public python-icdiff
|
||||||
|
(package
|
||||||
|
(name "python-icdiff")
|
||||||
|
(version "2.0.5")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/jeffkaufman/icdiff")
|
||||||
|
(commit (string-append "release-" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"14gr9j2h7sfw47pwfzspm4zinywhqmzm4a0qz5c2k9wbixz120a4"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(home-page "https://www.jefftk.com/icdiff")
|
||||||
|
(synopsis "Improved colored diff")
|
||||||
|
(description "This package provides colored diff functions that highlight
|
||||||
|
parts of the lines that were modified.")
|
||||||
|
(license license:psfl)))
|
||||||
|
|
||||||
(define-public python-dirsync
|
(define-public python-dirsync
|
||||||
(package
|
(package
|
||||||
(name "python-dirsync")
|
(name "python-dirsync")
|
||||||
|
|
Loading…
Reference in a new issue