summary refs log blame commit diff
path: root/pkgs/servers/identd/oidentd/default.nix
blob: 04ad25b3fd39f62a1f71a65d9003beff3edb08c8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                                    
                                           

    
{ 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";
    platforms = stdenv.lib.platforms.linux;
  };
}