about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/seren
diff options
context:
space:
mode:
authormatthewcroughan <matt@croughan.sh>2021-04-19 00:57:12 +0100
committermatthewcroughan <matt@croughan.sh>2021-04-19 20:26:15 +0100
commitfdc157bc3fa68e0bef222e5801f5cb611890695b (patch)
treec74839741941e3370f001df9f776966c6fe7eb7a /pkgs/applications/networking/instant-messengers/seren
parentb9e4b02b388bba1be475b16fa2681c85799fbb66 (diff)
seren: init at 0.0.21
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/seren')
-rw-r--r--pkgs/applications/networking/instant-messengers/seren/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/applications/networking/instant-messengers/seren/default.nix b/pkgs/applications/networking/instant-messengers/seren/default.nix
new file mode 100644
index 0000000000000..63cefbd2ffd1c
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/seren/default.nix
@@ -0,0 +1,37 @@
+{ lib
+, stdenv
+, fetchurl
+, alsaLib
+, libopus
+, libogg
+, gmp
+, ncurses
+}:
+
+stdenv.mkDerivation rec {
+  pname = "seren";
+  version = "0.0.21";
+
+  buildInputs = [ alsaLib libopus libogg gmp ncurses ];
+
+  src = fetchurl {
+    url = "http://holdenc.altervista.org/seren/downloads/${pname}-${version}.tar.gz";
+    sha256 = "sha256-adI365McrJkvTexvnWjMzpHcJkLY3S/uWfE8u4yuqho=";
+  };
+
+  meta = with lib; {
+    description = "A simple ncurses VoIP program based on the Opus codec";
+    longDescription = ''
+      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.
+    '';
+    homepage = "http://holdenc.altervista.org/seren/";
+    changelog = "http://holdenc.altervista.org/seren/";
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ matthewcroughan nixinator ];
+    platforms = platforms.linux;
+  };
+}