mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add fnc.
* gnu/packages/version-control.scm (fnc): New variable. Change-Id: Idf1cb254c3ae18bacb86bf020511a5d34e2d3684 Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
b0fbb70521
commit
a45b2c7c63
1 changed files with 28 additions and 0 deletions
|
@ -2839,6 +2839,34 @@ (define-public findnewest
|
|||
modification time.")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public fnc
|
||||
(package
|
||||
(name "fnc")
|
||||
(version "0.16")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri
|
||||
(string-append "https://fnc.bsdbox.org/uv/dl/fnc-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1npnbdz5i4p61ri76vx6awggbc0q19y8b26l3sy4wxmaxkly7gwy"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:phases #~(modify-phases %standard-phases
|
||||
(delete 'configure))
|
||||
#:tests? #f ; no tests
|
||||
#:make-flags #~(list (string-append "CC=" #$(cc-for-target))
|
||||
(string-append "PREFIX=" #$output))))
|
||||
(inputs (list ncurses zlib sqlite-next))
|
||||
(home-page "https://fnc.bsdbox.org")
|
||||
(synopsis "Interactive text-based user interface for Fossil")
|
||||
(description "fnc uses ncurses and libfossil to create a fossil user
|
||||
interface in the terminal. It can view local changes at the hunk level to
|
||||
prepare atomic commits.")
|
||||
(license license:isc)))
|
||||
|
||||
(define-public myrepos
|
||||
(package
|
||||
(name "myrepos")
|
||||
|
|
Loading…
Reference in a new issue