Merge pull request #119837 from MatthewCroughan/add-seren

seren: init at 0.0.21
This commit is contained in:
Luke Granger-Brown 2021-05-01 19:27:16 +01:00 committed by GitHub
commit 07377076d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 0 deletions

View file

@ -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;
};
}

View file

@ -11562,6 +11562,8 @@ in
gputils = null;
};
seren = callPackage ../applications/networking/instant-messengers/seren { };
serialdv = callPackage ../development/libraries/serialdv { };
serpent = callPackage ../development/compilers/serpent { };