nixpkgs/pkgs/servers/silc-server/default.nix

19 lines
509 B
Nix
Raw Normal View History

2013-04-12 17:49:48 +00:00
{ stdenv, fetchurl }:
2013-04-12 19:10:30 +00:00
stdenv.mkDerivation rec {
2013-04-12 17:49:48 +00:00
name = "silc-server-1.1.18";
src = fetchurl {
2013-04-12 19:10:30 +00:00
url = "http://silcnet.org/download/server/sources/${name}.tar.bz2";
2013-04-12 17:49:48 +00:00
sha256 = "0nr0hrwr4kbi611qazmrify7a27nzxb5n7d97f5i9cw3avxlw38s";
};
meta = {
homepage = http://silcnet.org/;
description = "Secure Internet Live Conferencing server";
license = stdenv.lib.licenses.gpl2;
2013-04-12 17:49:48 +00:00
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}