nixpkgs/pkgs/servers/xinetd/default.nix
Mateusz Kowalczyk 007f80c1d0 Turn more licenses into lib.licenses style
Should eval cleanly, as far as -A tarball tells me.

Relevant: issue #2999, issue #739
2014-11-06 00:48:16 +00:00

18 lines
406 B
Nix

{ fetchurl, stdenv }:
stdenv.mkDerivation rec {
name = "xinetd-2.3.15";
src = fetchurl {
url = "http://www.xinetd.org/${name}.tar.gz";
sha256 = "1qsv1al506x33gh92bqa8w21k7mxqrbsrwmxvkj0amn72420ckmz";
};
meta = {
description = "Secure replacement for inetd";
platforms = stdenv.lib.platforms.linux;
homepage = http://xinetd.org;
license = stdenv.lib.licenses.free;
};
}