unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 551a8e3ca5ab4d88c54de065a7df0a8386542555 1524 bytes (raw)
name: gnu/packages/xchat.scm 	 # note: path name is non-authoritative(*)

 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
 
(define-module (gnu packages xchat)
  #:use-module ((guix licenses) #:prefix license:)
  #: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 gtk)
  #:use-module (gnu packages image)
  #:use-module (gnu packages pkg-config))

(define-public xchat
  (package
    (name "xchat")
    (version "2.8.8")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "http://xchat.org/files/source/2.8/xchat-"
                           version ".tar.xz"))
       (sha256
        (base32 "02riy26ssnvqkbzvlc2lihdwfjh02j6fvl5xbmzy2xjmggcazdrp"))
       (patches
        (search-patches
        "xchat-2.8.8-configure-with-gmodule.patch"
        "xchat-2.8.8-glib-single-include.patch"))))
    (build-system gnu-build-system)
    (native-inputs
     `(("pkg-config" ,pkg-config)))
    (inputs
     `(("libpng" ,libpng)
       ("pango" ,pango)
       ("glib" ,glib)
       ("atk" , atk)
       ("gtk+" ,gtk+-2)))
    (arguments
     `(#:configure-flags
       (list
         "--enable-plugin"
         "--disable-nls"
         "--disable-python"
         "--disable-perl")
       #:tests? #f))
    (home-page "http://xchat.org/")
    (synopsis "Graphical IRC client for X")
    (description
     "XChat is a fully-featured graphical IRC client using the GTK+ toolkit.
It supports multiple server/channel windows, dialog windows and a plugin API.")
    (license license:gpl2)))

debug log:

solving 551a8e3ca5 ...
found 551a8e3ca5 in https://yhetil.org/guix-patches/20200324094723.GA3296@tulip/

applying [1/1] https://yhetil.org/guix-patches/20200324094723.GA3296@tulip/
diff --git a/gnu/packages/xchat.scm b/gnu/packages/xchat.scm
new file mode 100644
index 0000000000..551a8e3ca5

Checking patch gnu/packages/xchat.scm...
Applied patch gnu/packages/xchat.scm cleanly.

index at:
100644 551a8e3ca5ab4d88c54de065a7df0a8386542555	gnu/packages/xchat.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

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).