evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / se / seren / package.nix
blob80484114f32fc98a7d551a91fdd5cfe1b4f67cc7
1 { lib
2 , stdenv
3 , fetchurl
4 , alsa-lib
5 , libopus
6 , libogg
7 , gmp
8 , ncurses
9 }:
11 stdenv.mkDerivation rec {
12   pname = "seren";
13   version = "0.0.21";
15   buildInputs = [ alsa-lib libopus libogg gmp ncurses ];
17   src = fetchurl {
18     url = "http://holdenc.altervista.org/seren/downloads/${pname}-${version}.tar.gz";
19     sha256 = "sha256-adI365McrJkvTexvnWjMzpHcJkLY3S/uWfE8u4yuqho=";
20   };
22   meta = with lib; {
23     description = "Simple ncurses VoIP program based on the Opus codec";
24     mainProgram = "seren";
25     longDescription = ''
26       Seren is a simple VoIP program based on the Opus codec
27       that allows you to create a voice conference from the terminal, with up to 10
28       participants, without having to register accounts, exchange emails, or add
29       people to contact lists. All you need to join an existing conference is the
30       host name or IP address of one of the participants.
31     '';
32     homepage = "http://holdenc.altervista.org/seren/";
33     changelog = "http://holdenc.altervista.org/seren/";
34     license = licenses.gpl3Plus;
35     maintainers = with maintainers; [ matthewcroughan nixinator ];
36     platforms = platforms.linux;
37   };