all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Francesco Frassinelli <fraph24@gmail.com>
To: guix-devel@gnu.org
Subject: [PATCH] New package: Seren
Date: Thu, 05 May 2016 16:34:03 +0200	[thread overview]
Message-ID: <1462458843.23626.5.camel@gmail.com> (raw)

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

Hello,

I'm a new Guix user and I created a package for Seren, a P2P VoIP
conference program which uses Opus as codec.

I would like to thank the for helping me on IRC.

--
Frafra

[-- Attachment #2: 0001-Add-package-Seren.patch --]
[-- Type: text/x-patch, Size: 2377 bytes --]

From ecffe90a83f8ae0dddef49cfb115e28b854b5d62 Mon Sep 17 00:00:00 2001
From: Francesco Frassinelli <fraph24@gmail.com>
Date: Thu, 5 May 2016 16:23:15 +0200
Subject: [PATCH] Add package Seren

---
 gnu/packages/seren.scm | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 46 insertions(+)
 create mode 100644 gnu/packages/seren.scm

diff --git a/gnu/packages/seren.scm b/gnu/packages/seren.scm
new file mode 100644
index 0000000..8ac95ef
--- /dev/null
+++ b/gnu/packages/seren.scm
@@ -0,0 +1,46 @@
+(define-module (gnu packages seren)
+  #:use-module (guix packages)
+  #:use-module (guix download)
+  #:use-module (guix build-system gnu)
+  #:use-module (guix licenses)
+  #:use-module (gnu packages linux)
+  #:use-module (gnu packages xiph)
+  #:use-module (gnu packages ncurses)
+  #:use-module (gnu packages multiprecision))
+
+(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
+     `(#:phases
+       (modify-phases %standard-phases
+         (delete 'check))))
+    (inputs `(("alsa-lib" ,alsa-lib)
+              ("opus" ,opus)
+              ("libogg" ,libogg)
+              ("ncurses" ,ncurses)
+              ("gmp" ,gmp)))
+    (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
+partecipants, 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 partecipants.
+Seren creates a dynamic peer-to-peer network of equivalent nodes which
+exchange text and audio data using a UDP connection, and offers the
+user the ability to change the quality/bitrate on the fly, encrypt the
+traffic and record the calls.")
+    (home-page "http://holdenc.altervista.org/seren/")
+    (license gpl3+)))
-- 
2.7.4



             reply	other threads:[~2016-05-05 14:34 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-05 14:34 Francesco Frassinelli [this message]
2016-05-06  8:15 ` [PATCH] New package: Seren Alex Kost
2016-07-04  6:56 ` Alex Kost
2016-07-04  7:06   ` Francesco Frassinelli
     [not found]   ` <1468932716.19774.9.camel@gmail.com>
2016-07-19 17:04     ` Alex Kost
2016-08-02 19:23 ` Alex Kost

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

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1462458843.23626.5.camel@gmail.com \
    --to=fraph24@gmail.com \
    --cc=guix-devel@gnu.org \
    /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 external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.