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
675 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchurl
, pkg-config
, libtirpc
}:
2024-02-19 15:48:22 +00:00
stdenv.mkDerivation (finalAttrs: {
pname = "xinetd";
version = "2.3.15.4";
src = fetchurl {
2024-02-19 15:48:22 +00:00
url = "https://github.com/openSUSE/xinetd/releases/download/${finalAttrs.version}/xinetd-${finalAttrs.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";
2023-12-23 09:42:15 +00:00
license = lib.licenses.xinetd;
2022-09-08 12:23:10 +00:00
maintainers = with lib.maintainers; [ fgaz ];
};
2024-02-19 15:48:22 +00:00
})