summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorjgart <jgart@dismail.de>2026-03-03 18:56:18 -0500
committerjgart <jgart@dismail.de>2026-03-08 22:28:04 -0400
commitc5b95c6629f002f9ba7767b6db591e88b1893e7e (patch)
tree7d49aa7fa8b367a565ff163d728f0c4ac22ce7ac /gnu
parent83a4bb52ba4a0bcf39c8382f2d8cd7af476a042b (diff)
gnu: Add scooper.
* gnu/packages/irc.scm (scooper): New variable. Change-Id: I389bd65bca021d1ae2aa0f994144e7ba6d8daa9a Signed-off-by: jgart <jgart@dismail.de>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/irc.scm33
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/irc.scm b/gnu/packages/irc.scm
index 1a9cf35bc4c..cb571f2f9ce 100644
--- a/gnu/packages/irc.scm
+++ b/gnu/packages/irc.scm
@@ -1028,6 +1028,39 @@ search. It is intended for use with the IRC bouncer @command{pounce},
but can also be used independently as a logging bot.")
(license license:gpl3+)))
+(define-public scooper
+ (package
+ (name "scooper")
+ (version "1.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.causal.agency/scooper")
+ (commit version)))
+ (sha256
+ (base32 "0sqb8hg402il38pjhwa3lfyrskf1yr6yjd5fswqvk3d15v1jq4m8"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list #:tests? #f ; There are no tests.
+ #:make-flags
+ #~(list
+ (string-append "CC=" #$(cc-for-target))
+ (string-append "PREFIX=" #$output))))
+ (native-inputs
+ (list pkg-config universal-ctags))
+ (inputs
+ (list kcgi
+ libressl
+ litterbox
+ sqlite))
+ (home-page "https://code.causal.agency/june/scooper")
+ (synopsis "Web interface for the litterbox IRC logger")
+ (description
+ "@command{scooper} is a CGI and FastCGI web interface that also provides
+IRC log listings and full-text search.")
+ (license license:gpl3+)))
+
(define-public inspircd
(package
(name "inspircd")