nixpkgs/pkgs/servers/xinetd/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
641 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchurl
, pkg-config
, libtirpc
}:
stdenv.mkDerivation rec {
pname = "xinetd";
version = "2.3.15.4";
src = fetchurl {
url = "https://github.com/openSUSE/xinetd/releases/download/${version}/xinetd-${version}.tar.xz";
hash = "sha256-K6pYEBC8cDYavfo38SHpKuucXOZ/mnGRPOvWk1nMllQ=";
};
nativeBuildInputs = [
pkg-config
2016-11-16 18:31:20 +00:00
];
buildInputs = [
libtirpc
];
2020-08-22 17:36:46 +00:00
meta = {
description = "Secure replacement for inetd";
2021-01-15 07:07:56 +00:00
platforms = lib.platforms.linux;
homepage = "https://github.com/openSUSE/xinetd";
2021-01-15 07:07:56 +00:00
license = lib.licenses.free;
2022-09-08 12:23:10 +00:00
maintainers = with lib.maintainers; [ fgaz ];
};
}