[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#70407] [PATCH] gnu: Add fnc
From: |
ashish . is |
Subject: |
[bug#70407] [PATCH] gnu: Add fnc |
Date: |
Mon, 15 Apr 2024 20:25:12 +0000 |
From: Ashish SHUKLA <ashish.is@lostca.se>
* gnu/packages/version-control.scm (fnc): New variable.
Change-Id: Idf1cb254c3ae18bacb86bf020511a5d34e2d3684
Signed-off-by: Ashish SHUKLA <ashish.is@lostca.se>
---
gnu/packages/version-control.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 96ca1df552..33607940ec 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -4145,3 +4145,28 @@ (define-public git-sizer
(description "Compute various size metrics for a Git repository, flagging
those that might cause problems or inconvenience.")
(license license:expat)))
+
+(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
+ '(#:phases (modify-phases %standard-phases
+ (delete 'configure))
+ #:tests? #f
+ #:make-flags (list "CC=gcc"
+ (string-append "PREFIX=" (assoc-ref %outputs
"out")))))
+ (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 ui
experience in
+the terminal, and parse local changes at the hunk level to prepare atomic
commits.")
+ (license license:isc)))
base-commit: a8353e9d6b34fd8d42d2e8f14ce844849fe9c293
--
2.41.0
- [bug#70407] [PATCH] gnu: Add fnc,
ashish . is <=