unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Kei Kebreau <kei@openmailbox.org>
To: ng0 <ng0@libertad.pw>
Cc: guix-devel@gnu.org
Subject: Re: [PATCH] gnu: Add toxic.
Date: Thu, 22 Dec 2016 18:51:10 -0500	[thread overview]
Message-ID: <8737hfzfo1.fsf@openmailbox.org> (raw)
In-Reply-To: <20161222184746.14948-2-ng0@libertad.pw> (ng0@libertad.pw's message of "Thu, 22 Dec 2016 18:47:46 +0000")

[-- Attachment #1: Type: text/plain, Size: 3440 bytes --]

ng0 <ng0@libertad.pw> writes:

> * gnu/packages/messaging.scm (toxic): New variable.
> ---
>  gnu/packages/messaging.scm | 47 ++++++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 47 insertions(+)
>
> diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
> index 4290a9f69..24728cc06 100644
> --- a/gnu/packages/messaging.scm
> +++ b/gnu/packages/messaging.scm
> @@ -40,6 +40,7 @@
>    #:use-module (gnu packages autotools)
>    #:use-module (gnu packages avahi)
>    #:use-module (gnu packages check)
> +  #:use-module (gnu packages curl)
>    #:use-module (gnu packages crypto)
>    #:use-module (gnu packages cyrus-sasl)
>    #:use-module (gnu packages databases)
> @@ -70,12 +71,14 @@
>    #:use-module (gnu packages linux)
>    #:use-module (gnu packages tls)
>    #:use-module (gnu packages icu4c)
> +  #:use-module (gnu packages image)
>    #:use-module (gnu packages qt)
>    #:use-module (gnu packages video)
>    #:use-module (gnu packages web)
>    #:use-module (gnu packages xiph)
>    #:use-module (gnu packages audio)
>    #:use-module (gnu packages bison)
> +  #:use-module (gnu packages textutils)
>    #:use-module (gnu packages fontutils))
>  
>  (define-public libotr
> @@ -767,6 +770,50 @@ guidelines.  It provides an easy to use application that allows you to
>  connect with friends and family without anyone else listening in.")
>      (license license:gpl3+)))
>  
> +(define-public toxic
> +  (package
> +    (name "toxic")
> +    (version "0.7.2")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (string-append "https://github.com/JFreegman/toxic/archive/"
> +                           "v" version ".tar.gz"))
> +       (sha256
> +        (base32
> +         "0nbcj71ffl85l396bxc5cs8d7abn4b7absaj5asq9bvcfv52m5m2"))
> +       (file-name (string-append name "-" version ".tar.gz"))))
> +    (inputs
> +     `(("ncurses" ,ncurses)

I'm not sure what's up here. IIRC, we don't install the ncurses *.pc
files. If I'm wrong, someone please correct me.

> +       ("libconfig" ,libconfig)
> +       ("curl" ,curl)
> +       ("libsodium" ,libsodium)
> +       ("freealut" ,freealut)
> +       ("libnotify" ,libnotify)

Adding gdk-pixbuf as a dependency satisfied pkg-config here. Apparently
it's a dependency when you try to use "pkg-config --libs libnotify" with
just libnotify installed.

> +       ("c-toxcore" ,c-toxcore)
> +       ("openal" ,openal)
> +       ("libvpx" ,libvpx)
> +       ("libx11" ,libx11)
> +       ("libpng" ,libpng)
> +       ("qrencode" ,qrencode)))
> +    (native-inputs
> +     `(("pkg-config" ,pkg-config)
> +       ("libconfig" ,libconfig)))
> +    (build-system gnu-build-system)
> +    (arguments
> +     `(#:tests? #f ; no tests
> +       #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
> +       #:phases
> +       (modify-phases %standard-phases
> +         (delete 'configure))))
> +    (home-page "https://github.com/JFreegman/toxic/")
> +    (synopsis "Tox client using an ncurses interface")
> +    (description
> +     "Toxic is a small tox clien.  It provides an easy to use application

*client.

> +that allows you to connect with friends and family without anyone else
> +listening in.")
> +    (license license:gpl3+)))
> +
>  (define-public pybitmessage
>    (package
>      (name "pybitmessage")

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

  reply	other threads:[~2016-12-22 23:51 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-22 18:47 A ncurses tox client: toxic ng0
2016-12-22 18:47 ` [PATCH] gnu: Add toxic ng0
2016-12-22 23:51   ` Kei Kebreau [this message]
2016-12-23  5:58     ` John Darrington
2016-12-23  9:18       ` ng0
2016-12-23  9:24         ` ng0
2016-12-23 19:58       ` Tobias Geerinckx-Rice
2016-12-23 14:34     ` Marius Bakke
2016-12-23 15:59       ` Kei Kebreau
2016-12-23 17:36         ` ng0

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=8737hfzfo1.fsf@openmailbox.org \
    --to=kei@openmailbox.org \
    --cc=guix-devel@gnu.org \
    --cc=ng0@libertad.pw \
    /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).