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

stdenv.mkDerivation rec {
  name = "xinetd-2.3.14";
  
  src = fetchurl {
    url = "http://www.xinetd.org/${name}.tar.gz";
    sha256 = "07xws1ydxrrx4xinvfqkc66diwfjh2apxz33xw4hb6k0gihhw3kn";
  };

  meta = {
    description = "Secure replacement for inetd";
    homepage = http://xinetd.org;
    license = "free";
  };
}