mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
9a624d10e3
Since theey is not active from at least six years. All the packages on this commit became orphans. --------------------------------------------------------------------------- There are files not covered by this commit, because they will be adopted soon. Namely: - pkgs/by-name/zs/zsync/package.nix - pkgs/games/bsdgames/default.nix - pkgs/misc/ghostscript/default.nix - pkgs/os-specific/linux/kernel/perf/default.nix - pkgs/tools/system/logrotate/default.nix
20 lines
531 B
Nix
20 lines
531 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "silc-server";
|
|
version = "1.1.18";
|
|
|
|
src = fetchurl {
|
|
url = "http://silcnet.org/download/server/sources/silc-server-${version}.tar.bz2";
|
|
sha256 = "0nr0hrwr4kbi611qazmrify7a27nzxb5n7d97f5i9cw3avxlw38s";
|
|
};
|
|
|
|
meta = {
|
|
homepage = "http://silcnet.org/";
|
|
description = "Secure Internet Live Conferencing server";
|
|
mainProgram = "silcd";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = [ ];
|
|
platforms = with lib.platforms; linux;
|
|
};
|
|
}
|