unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Tobias Geerinckx-Rice via Guix-patches via <guix-patches@gnu.org>
To: 64965@debbugs.gnu.org
Subject: [bug#64965] [PATCH 8/8] gnu: Add glirc.
Date: Sun, 30 Jul 2023 02:00:00 +0200	[thread overview]
Message-ID: <f9964a409fd6e705e5f8d46e068cfb047da11a2d.1690675200.git.me@tobias.gr> (raw)
In-Reply-To: <020d302edff3fb5ea32ab5bc4c38abd19233992f.1690675200.git.me@tobias.gr>

* gnu/packages/irc.scm (glirc): New public variable.
---
 gnu/packages/irc.scm | 50 +++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 49 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/irc.scm b/gnu/packages/irc.scm
index 03256241dd..865b831d5c 100644
--- a/gnu/packages/irc.scm
+++ b/gnu/packages/irc.scm
@@ -5,7 +5,7 @@
 ;;; Copyright © 2015-2023 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2016 Nikita <nikita@n0.is>
 ;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
-;;; Copyright © 2017–2022 Tobias Geerinckx-Rice <me@tobias.gr>
+;;; Copyright © 2017–2023 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
 ;;; Copyright © 2020, 2021, 2022 Vinicius Monego <monego@posteo.net>
 ;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
@@ -40,6 +40,7 @@ (define-module (gnu packages irc)
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system go)
+  #:use-module (guix build-system haskell)
   #:use-module (guix build-system meson)
   #:use-module (guix build-system python)
   #:use-module (guix build-system qt)
@@ -66,6 +67,9 @@ (define-module (gnu packages irc)
   #:use-module (gnu packages golang)
   #:use-module (gnu packages gtk)
   #:use-module (gnu packages guile)
+  #:use-module (gnu packages haskell-check)
+  #:use-module (gnu packages haskell-crypto)
+  #:use-module (gnu packages haskell-xyz)
   #:use-module (gnu packages lua)
   #:use-module (gnu packages lxqt)
   #:use-module (gnu packages man)
@@ -93,6 +97,50 @@ (define-module (gnu packages irc)
   #:use-module (srfi srfi-1)
   #:use-module (srfi srfi-26))
 
+(define-public glirc
+  (package
+  (name "glirc")
+  (version "2.39.0.1")
+  (source
+   (origin
+     (method url-fetch)
+     (uri (hackage-uri "glirc" version))
+     (sha256
+      (base32 "0jaywb43jfv6kzyz540k02mxdgw1shc6hn7kia21alssszkilh4r"))))
+  (build-system haskell-build-system)
+  (native-inputs
+   (list ghc-hunit))
+  (inputs
+   (list ghc-async
+         ghc-attoparsec
+         ghc-base64-bytestring
+         ghc-config-schema
+         ghc-config-value
+         ghc-curve25519
+         ghc-free
+         ghc-githash
+         ghc-hashable
+         ghc-hookup
+         ghc-hsopenssl
+         ghc-irc-core
+         ghc-kan-extensions
+         ghc-lens
+         ghc-network
+         ghc-psqueues
+         ghc-random
+         ghc-regex-tdfa
+         ghc-split
+         ghc-unordered-containers
+         ghc-vector
+         ghc-vty))
+  (home-page "https://github.com/glguy/irc-core")
+  (synopsis "Console IRC client")
+  (description
+   "Glirc is a console IRC client with an emphasis on providing dynamic views
+into the model of your IRC connections.  All views and transformation are
+dynamic and don't change the underlying model.")
+  (license license:isc)))
+
 (define-public quassel
   (package
     (name "quassel")
-- 
2.41.0





  parent reply	other threads:[~2023-07-30 22:43 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-30 22:38 [bug#64965] Add glirc Tobias Geerinckx-Rice via Guix-patches via
2023-07-29 23:59 ` [bug#64965] [PATCH 1/8] gnu: Add ghc-curve25519 Tobias Geerinckx-Rice via Guix-patches via
2023-07-29 23:59   ` [bug#64965] [PATCH 2/8] gnu: Add ghc-config-value Tobias Geerinckx-Rice via Guix-patches via
2023-07-29 23:59   ` [bug#64965] [PATCH 3/8] gnu: Add ghc-config-schema Tobias Geerinckx-Rice via Guix-patches via
2023-07-29 23:59   ` [bug#64965] [PATCH 4/8] gnu: Add ghc-hsopenssl-x509-system Tobias Geerinckx-Rice via Guix-patches via
2023-07-29 23:59   ` [bug#64965] [PATCH 5/8] gnu: Add ghc-hookup Tobias Geerinckx-Rice via Guix-patches via
2023-07-29 23:59   ` [bug#64965] [PATCH 6/8] gnu: Add ghc-irc-core Tobias Geerinckx-Rice via Guix-patches via
2023-07-29 23:59   ` [bug#64965] [PATCH 7/8] gnu: Add ghc-vty Tobias Geerinckx-Rice via Guix-patches via
2023-07-30  0:00   ` Tobias Geerinckx-Rice via Guix-patches via [this message]
2023-07-31  7:00 ` [bug#64965] Add glirc Lars-Dominik Braun
2023-07-31 19:25 ` bug#64965: " Tobias Geerinckx-Rice via Guix-patches via

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=f9964a409fd6e705e5f8d46e068cfb047da11a2d.1690675200.git.me@tobias.gr \
    --to=guix-patches@gnu.org \
    --cc=64965@debbugs.gnu.org \
    --cc=me@tobias.gr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).