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 21:31:20 +03:00
];
buildInputs = [
libtirpc
];
2020-08-22 20:36:46 +03:00
meta = {
description = "Secure replacement for inetd";
2021-01-15 10:07:56 +03:00
platforms = lib.platforms.linux;
homepage = "https://github.com/openSUSE/xinetd";
2021-01-15 10:07:56 +03:00
license = lib.licenses.free;
2022-09-08 15:23:10 +03:00
maintainers = with lib.maintainers; [ fgaz ];
};
}