about summary refs log tree commit diff
path: root/pkgs/servers/identd/oidentd/default.nix
blob: b8eb21e492bce28ab75aec87f8ad76501ad1f29c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "oidentd-2.0.8";

  CFLAGS = [ "--std=gnu89" ];

  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;
  };
}