diff options
author | James <james.taylor@fastmail.com> | 2023-03-19 13:31:09 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-12 08:26:26 -0400 |
commit | 1e7ae59abba8ed48917672b30ac3a3feb3f94023 (patch) | |
tree | f90dd888f0e05e086e21b2f18b9a9c8e135e79b8 /gnu | |
parent | 056d042b5847080b9b940c80f16594652338a120 (diff) | |
download | guix-1e7ae59abba8ed48917672b30ac3a3feb3f94023.tar guix-1e7ae59abba8ed48917672b30ac3a3feb3f94023.tar.gz |
gnu: Add nntpit.
* gnu/packages/web.scm (nntpit): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/web.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 0e129f3ba1..d6648d401d 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -6512,6 +6512,32 @@ internetarchive python module for programmatic access to archive.org.") snippets on @url{https://commandlinefu.com}.") (license license:expat)))) +(define-public nntpit + (let ((commit "c0d654736460d174a680b2e06c3a81ce883fc09a") + (revision "0")) + (package + (name "nntpit") + (version (git-version "0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/taviso/nntpit") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1kkdh2qpkfw97hzw9jsxy5jzmhhv8261bj63mvr5c9qwlp6qs46g")))) + (build-system gnu-build-system) + (native-inputs (list autoconf automake glib pkg-config)) + (inputs (list curl json-c libev)) + (synopsis "Minimal reddit2nntp gateway server") + (description + "This is a simple reddit2nntp gateway server that lets you use a newsreader + to follow discussions on reddit. The intention is for you to run it locally, + tell your newsreader to connect to localhost, and subreddits will appear as newsgroups!") + (home-page "https://github.com/taviso/nntpit") + (license license:expat)))) + (define-public rss-bridge (package (name "rss-bridge") |