guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 2/2] gnu: Add mcabber.


From: Mark H Weaver
Subject: Re: [PATCH 2/2] gnu: Add mcabber.
Date: Tue, 17 Jan 2017 04:52:31 -0500
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux)

Hi,

ng0 <address@hidden> writes:

> * gnu/packages/messaging.scm (mcabber): New variable.
> ---
>  gnu/packages/messaging.scm | 32 ++++++++++++++++++++++++++++++++
>  1 file changed, 32 insertions(+)
>
> diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
> index d6b0d4bbc..67b359d01 100644
> --- a/gnu/packages/messaging.scm
> +++ b/gnu/packages/messaging.scm
> @@ -37,6 +37,7 @@
>    #:use-module (guix build-system cmake)
>    #:use-module (gnu packages)
>    #:use-module (gnu packages aidc)
> +  #:use-module (gnu packages aspell)
>    #:use-module (gnu packages autotools)
>    #:use-module (gnu packages avahi)
>    #:use-module (gnu packages base)
> @@ -1150,4 +1151,35 @@ and yet extensible to let you do anything the Jabber 
> protocol allows.")
>      (synopsis "Asynchronous XMPP library")
>      (license license:lgpl2.1)))
>  
> +(define-public mcabber
> +  (package
> +    (name "mcabber")
> +    (version "1.0.4")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (string-append "https://mcabber.com/files/";
> +                           name "-" version ".tar.bz2"))
> +       (sha256
> +        (base32
> +         "02nfn5r7cjpnacym95l6bvczii232v3x2gi79gfa9syc7w0brdk3"))))
> +    (build-system gnu-build-system)
> +    (inputs
> +     `(("gpgme" ,gpgme)
> +       ("libotr" ,libotr)
> +       ("aspell" ,aspell)
> +       ("libidn" ,libidn)
> +       ("glib" ,glib)
> +       ("ncurses" ,ncurses)
> +       ("loudmouth" ,loudmouth)))
> +    (native-inputs
> +     `(("pkg-config" ,pkg-config)))
> +    (home-page "http://about.psyc.eu/libpsyc";)

This home-page seems incorrect.  Debian's mcabber package says that
<http://mcabber.com/> is its home page, which seems right.

> +    (description
> +     "Loudmouth is a lightweight and easy-to-use C library for programming
> +with the Jabber protocol.  It's designed to be easy to get started with
> +and yet extensible to let you do anything the Jabber protocol allows.")

This description field is apparently copied from the 'loudmouth'
package, and doesn't match this one.

> +    (synopsis "Small XMPP console client")
> +    (license license:gpl2)))

According to Debian's copyright file, the license is gpl2+, not gpl2.

     Mark



reply via email to

[Prev in Thread] Current Thread [Next in Thread]