From 319ac02b5a775e898af51bb8caec5f30cf5918c0 Mon Sep 17 00:00:00 2001 From: Francesco Frassinelli Date: Thu, 5 May 2016 16:23:15 +0200 Subject: gnu: Add Seren. * gnu/packages/telephony.scm (seren): New variable. Signed-off-by: Alex Kost --- gnu/packages/telephony.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/telephony.scm b/gnu/packages/telephony.scm index b27dd1f6d6..d8a33ddf3d 100644 --- a/gnu/packages/telephony.scm +++ b/gnu/packages/telephony.scm @@ -4,6 +4,7 @@ ;;; Copyright © 2015 David Hashe ;;; Copyright © 2015 Efraim Flashner ;;; Copyright © 2016 Lukas Gradl +;;; Copyright © 2016 Francesco Frassinelli ;;; ;;; This file is part of GNU Guix. ;;; @@ -25,8 +26,11 @@ (define-module (gnu packages telephony) #:use-module (gnu packages autotools) #:use-module (gnu packages gnupg) #:use-module (gnu packages linux) + #:use-module (gnu packages multiprecision) + #:use-module (gnu packages ncurses) #:use-module (gnu packages pkg-config) #:use-module (gnu packages tls) + #:use-module (gnu packages xiph) #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix download) @@ -252,3 +256,33 @@ (define-public libiax2 ;; covered under the 'GPL'. ;; The package as a whole is distributed under the LGPL 2.0. (license (list lgpl2.0 public-domain gpl2+))))) + +(define-public seren + (package + (name "seren") + (version "0.0.21") + (source (origin + (method url-fetch) + (uri (string-append "http://holdenc.altervista.org/" + "seren/downloads/seren-" version + ".tar.gz")) + (sha256 + (base32 + "06mams6bng7ib7p2zpfq88kdr4ffril9svzc9lprkb0wjgmkglk9")))) + (build-system gnu-build-system) + (arguments '(#:tests? #f)) ; no "check" target + (inputs + `(("alsa-lib" ,alsa-lib) + ("gmp" ,gmp) + ("libogg" ,libogg) + ("ncurses" ,ncurses) + ("opus" ,opus))) + (synopsis "Simple VoIP program to create conferences from the terminal") + (description + "Seren is a simple VoIP program based on the Opus codec that allows you +to create a voice conference from the terminal, with up to 10 participants, +without having to register accounts, exchange emails, or add people to contact +lists. All you need to join an existing conference is the host name or IP +address of one of the participants.") + (home-page "http://holdenc.altervista.org/seren/") + (license gpl3+))) -- cgit v1.2.3