nixpkgs/pkgs/servers/identd/oidentd/default.nix

17 lines
392 B
Nix
Raw Normal View History

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