Adding silc-server.

This commit is contained in:
Lluís Batlle i Rossell 2013-04-12 19:49:48 +02:00
parent 84ff838780
commit cdd57eb434
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "silc-server-1.1.18";
src = fetchurl {
url = "http://silcnet.org/download/server/sources/silc-server-1.1.18.tar.bz2";
sha256 = "0nr0hrwr4kbi611qazmrify7a27nzxb5n7d97f5i9cw3avxlw38s";
};
meta = {
homepage = http://silcnet.org/;
description = "Secure Internet Live Conferencing server";
license = "GPLv2";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}

View file

@ -6221,6 +6221,8 @@ let
shadow = callPackage ../os-specific/linux/shadow { };
silc_server = callPackage ../servers/silc-server { };
splashutils = callPackage ../os-specific/linux/splashutils/default.nix { };
statifier = builderDefsPackage (import ../os-specific/linux/statifier) { };