* Added oidentd, an implementation of the IDENT protocol.

svn path=/nixpkgs/trunk/; revision=30379
This commit is contained in:
Eelco Dolstra 2011-11-10 22:29:58 +00:00
parent e8b1259990
commit 75b7d02633
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "oidentd-2.0.8";
src = fetchurl {
url = "mirror://sourceforge/ojnk/${name}.tar.gz";
sha256 = "0vzv2086rrxcaavrm3js7aqvyc0grgaqy78x61d8s7r8hz8vwk55";
};
meta = {
homepage = http://ojnk.sourceforge.net/;
description = "An implementation of the IDENT protocol";
};
}

View file

@ -4985,6 +4985,8 @@ let
nagiosPluginsOfficial = callPackage ../servers/monitoring/nagios/plugins/official { };
oidentd = callPackage ../servers/identd/oidentd { };
openfire = callPackage ../servers/xmpp/openfire { };
postgresql = postgresql83;