1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "silc-server-1.1.18";
5
6 src = fetchurl {
7 url = "http://silcnet.org/download/server/sources/${name}.tar.bz2";
8 sha256 = "0nr0hrwr4kbi611qazmrify7a27nzxb5n7d97f5i9cw3avxlw38s";
9 };
10
11 meta = {
12 homepage = http://silcnet.org/;
13 description = "Secure Internet Live Conferencing server";
14 license = stdenv.lib.licenses.gpl2;
15 maintainers = with stdenv.lib.maintainers; [viric];
16 platforms = with stdenv.lib.platforms; linux;
17 };
18}