mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-04 20:13:21 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ 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 = "Simple ncurses VoIP program based on the Opus codec";
|
|
mainProgram = "seren";
|
|
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;
|
|
};
|
|
}
|