about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/instant-messengers/seren/default.nix
blob: ed02def3eb88d9833d8c373445d3d3a939180320 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ lib
, stdenv
, fetchurl
, alsa-lib
, libopus
, libogg
, gmp
, ncurses
}:

stdenv.mkDerivation rec {
  pname = "seren";
  version = "0.0.21";

  buildInputs = [ alsa-lib 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;
  };
}