guix-devel
[Top][All Lists]
Advanced

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

Re: [PATCH v2 3/3] gnu: Add utox.


From: Efraim Flashner
Subject: Re: [PATCH v2 3/3] gnu: Add utox.
Date: Sat, 10 Sep 2016 22:40:38 +0300
User-agent: Mutt/1.7.0 (2016-08-17)

On Thu, Sep 08, 2016 at 09:02:31PM -0400, Erik Edrosa wrote:
> * gnu/packages/messaging.scm (utox): New variable.
> ---
>  gnu/packages/messaging.scm | 51 
> ++++++++++++++++++++++++++++++++++++++++++++--
>  1 file changed, 49 insertions(+), 2 deletions(-)
> 
> diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
> index b95239a..055cb7b 100644
> --- a/gnu/packages/messaging.scm
> +++ b/gnu/packages/messaging.scm
> @@ -24,7 +24,7 @@
>  
>  (define-module (gnu packages messaging)
>    #:use-module ((guix licenses)
> -                #:select (gpl3+ gpl2+ gpl2 lgpl2.1 lgpl2.0+ bsd-2 
> non-copyleft
> +                #:select (gpl3+ gpl3 gpl2+ gpl2 lgpl2.1 lgpl2.0+ bsd-2 
> non-copyleft
>                            asl2.0 x11))
>    #:use-module (guix utils)
>    #:use-module (guix packages)
> @@ -64,7 +64,9 @@
>    #:use-module (gnu packages tls)
>    #:use-module (gnu packages icu4c)
>    #:use-module (gnu packages video)
> -  #:use-module (gnu packages xiph))
> +  #:use-module (gnu packages xiph)
> +  #:use-module (gnu packages audio)
> +  #:use-module (gnu packages fontutils))
>  
>  (define-public libotr
>    (package
> @@ -612,4 +614,49 @@ protocols.")
>        (license gpl3+)
>        (home-page "https://tox.chat";))))
>  
> +(define-public utox
> +  (package
> +   (name "utox")
> +   (version "0.9.8")
> +   (source
> +    (origin
> +     (method url-fetch)
> +     (uri (string-append "https://github.com/GrayHatter/uTox/archive/v";
> +                         version ".tar.gz"))
> +     (file-name (string-append name "-" version ".tar.gz"))
> +     (sha256
> +      (base32
> +       "13hfqbwzcgvfbvf9yjm62aqsvxnpqppb50c88sys43m7022yqcsy"))))
> +   (build-system gnu-build-system)
> +   (arguments
> +    '(#:make-flags (list (string-append "PREFIX=" %output)
> +                         "CC=gcc")
> +      ;; No tests
> +      #:tests? #f
> +      #:phases
> +      (modify-phases %standard-phases
> +        ;; No configure script
> +        (delete 'configure))))
> +   (inputs
> +    `(("dbus" ,dbus)
> +      ("filteraudio" ,filteraudio)
> +      ("fontconfig" ,fontconfig)
> +      ("freetype" ,freetype)
> +      ("libsodium" ,libsodium)
> +      ("libtoxcore" ,libtoxcore)
> +      ("libvpx" ,libvpx)
> +      ("libx11" ,libx11)
> +      ("libxext" ,libxext)
> +      ("libxrender" ,libxrender)
> +      ("openal" ,openal)
> +      ("v4l-utils" ,v4l-utils)))
> +   (native-inputs
> +    `(("pkg-config" ,pkg-config)))
> +   (synopsis "Lightweight Tox client")
> +   (description "The lightest and fluffiest Tox client.  Tox is a
> +distributed and secure instant messenger with audio and video chat
> +capabilities.")
> +   (home-page "http://utox.org/";)
> +   (license gpl3)))
> +
>  ;;; messaging.scm ends here
> -- 
> 2.10.0
> 

Patch pushed!

-- 
Efraim Flashner   <address@hidden>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

Attachment: signature.asc
Description: PGP signature


reply via email to

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