aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/irssi.scm
blob: 671f560eb3e5821e4aec23b9330b305142cdefaa (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages irssi)
  #:use-module (guix licenses)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (gnu packages)
  #:use-module (gnu packages glib)
  #:use-module (gnu packages ncurses)
  #:use-module (gnu packages perl)
  #:use-module (gnu packages pkg-config))

(define-public irssi
  (package
    (name "irssi")
    (version "0.8.15")
    (source (origin
             (method url-fetch)
             (uri (string-append "http://www.irssi.org/files/irssi-"
                                 version ".tar.bz2"))
             (sha256
              (base32
               "19m0aah9bhc70dnhh7kpydbsz5n35l0l9knxav1df0sic3xicbf1"))))
    (build-system gnu-build-system)
    (arguments
     `(#:phases
       (alist-replace
        'configure
        (lambda* (#:key inputs outputs #:allow-other-keys)
          (let ((out (assoc-ref outputs "out"))
                (ncurses (assoc-ref inputs "ncurses")))
            (setenv "CONFIG_SHELL" (which "bash"))
            (zero?
             (system* "./configure"
                      (string-append "--prefix=" out)
                      (string-append "--with-ncurses=" ncurses)))))
        %standard-phases)))
    (inputs
     `(("glib" ,glib)
       ("pkg-config" ,pkg-config)
       ("ncurses" ,ncurses)
       ("perl" ,perl)))
    (home-page "http://www.irssi.org/")
    (synopsis "Irssi, a terminal-based IRC client")
    (description
     "Irssi is a terminal based IRC client for UNIX systems. It also supports
SILC and ICB protocols via plugins.")
    (license gpl2+)))
n>Julien Lepiller 2020-10-15gnu: Add ocaml-csexp....Julien Lepiller 2020-10-15gnu: ocaml-result: Update to 1.5....Julien Lepiller 2020-10-15gnu: ocaml-alcotest: Update to 1.0.0.Julien Lepiller 2020-10-15gnu: ocaml-fmt: Update to 0.8.9....Julien Lepiller 2020-10-15gnu: ocaml-logs: Update to 0.7.0....Julien Lepiller 2020-10-15gnu: ocaml-base64: Update to 3.4.0....Julien Lepiller 2020-10-15gnu: opam: Update to 2.0.7....Julien Lepiller 2020-10-15gnu: ocaml-tyxml: Do not use deprecated jbuilder....Julien Lepiller 2020-10-15gnu: ocaml4.07-core: Do not use deprecated jbuilder....Julien Lepiller 2020-10-15gnu: ocaml4.07-ppx-expect: Do not use deprecated jbuilder....Julien Lepiller 2020-10-15gnu: ocaml4.07-merlin: Do not use deprecated jbuilder....Julien Lepiller 2020-10-15gnu: ocaml4.07-utop: Do not use deprecated jbuilder....Julien Lepiller 2020-10-15gnu: ocaml4.07-zed: Do not use deprecated jbuilder....Julien Lepiller 2020-10-15gnu: ocaml-easy-format: Do not use deprecated jbuilder....Julien Lepiller 2020-10-15gnu: ocaml-lwt-log: Do not use deprecated jbuilder....Julien Lepiller 2020-10-15gnu: ocaml-bitstring: Do not use deprecated jbuilder....Julien Lepiller 2020-10-15gnu: ocaml-qtest: Do not use deprecated jbuilder....Julien Lepiller 2020-10-15gnu: ocaml-ppx-tools-versioned: Update to 5.4.0....Julien Lepiller 2020-10-15gnu: ocaml-migrate-parsetree: Update to 1.7.3....Julien Lepiller 2020-10-15gnu: ocaml-mccs: Update to 1.1+11....Julien Lepiller 2020-10-15gnu: camlp5: Update to 7.13....Julien Lepiller 2020-10-15gnu: unison: Build with ocaml-4.09....Julien Lepiller 2020-09-30gnu: ocaml4.07-sqlite3: Fix build....Julien Lepiller 2020-09-23gnu: Fix typoes in package descriptions....Tobias Geerinckx-Rice 2020-08-31gnu: ocamlify: Update to 0.0.2....Tobias Geerinckx-Rice 2020-08-31gnu: ocamlify: Parametrize source URI....Tobias Geerinckx-Rice 2020-07-30gnu: opam: Fix tests....Marius Bakke 2020-07-12gnu: Remove ".git" from "https://github/…/….git"....Ludovic Courtès 2020-06-24gnu: ocaml4.07-piqi: Don't use unstable tarball....Efraim Flashner