guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#56951] [PATCH] gnu: packages: Add jrnlc.


From: (
Subject: [bug#56951] [PATCH] gnu: packages: Add jrnlc.
Date: Wed, 3 Aug 2022 14:17:31 +0100

* gnu/packages/admin.scm (jrnlc): New variable.
---
 gnu/packages/admin.scm | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 146423d068..2d84787aef 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -5447,3 +5447,44 @@ (define-public fail2ban
 up services to use only two factor, or public/private authentication
 mechanisms if you really want to protect services.")
     (license license:gpl2+)))
+
+(define-public jrnlc
+  (package
+    (name "jrnlc")
+    (version "2022.a")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/thexhr/jrnlc";)
+               (commit version)))
+        (file-name (git-file-name name version))
+        (sha256
+          (base32 "10j4iyac41ndr9yic7vdkajf4kvvwzbd5jxpjypzybcygj9jq8h6"))))
+    (build-system gnu-build-system)
+    (arguments
+     (list #:make-flags
+           #~(list (string-append "PREFIX=" #$output)
+                   (string-append "CC=" #$(cc-for-target)))
+           #:tests? #f ; no check target
+           #:phases
+           #~(modify-phases %standard-phases
+               (add-after 'unpack 'patch-install-invocations
+                 (lambda _
+                  (substitute* "Makefile"
+                    (("-o root") ""))))
+               (delete 'configure)
+               (add-before 'install 'create-output-dirs
+                 (lambda* (#:key outputs #:allow-other-keys)
+                   (let ((out (assoc-ref outputs "out")))
+                     (mkdir-p (string-append out "/bin"))
+                     (mkdir-p (string-append out "/man"))))))))
+    (inputs (list json-c libsodium))
+    (native-inputs (list pkg-config))
+    (home-page "https://github.com/thexhr/jrnlc";)
+    (synopsis "Opinionated command-line journal")
+    (description "@code{jrnlc} is a opinionated command line application
+for note-taking.  You can take notes by entering them on the command line
+or piping them from a file.  It supports full encryption of the journal,
+so that your notes remain secret.")
+    (license license:isc)))
-- 
2.37.1






reply via email to

[Prev in Thread] Current Thread [Next in Thread]