evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / xi / xinetd / package.nix
blob9abef85bde2975a4a17a3d811869fc229286cda5
1 { lib
2 , stdenv
3 , fetchurl
4 , pkg-config
5 , libtirpc
6 }:
8 stdenv.mkDerivation (finalAttrs: {
9   pname = "xinetd";
10   version = "2.3.15.4";
12   src = fetchurl {
13     url = "https://github.com/openSUSE/xinetd/releases/download/${finalAttrs.version}/xinetd-${finalAttrs.version}.tar.xz";
14     hash = "sha256-K6pYEBC8cDYavfo38SHpKuucXOZ/mnGRPOvWk1nMllQ=";
15   };
17   nativeBuildInputs = [
18     pkg-config
19   ];
21   buildInputs = [
22     libtirpc
23   ];
25   meta = {
26     description = "Secure replacement for inetd";
27     platforms = lib.platforms.linux;
28     homepage = "https://github.com/openSUSE/xinetd";
29     license = lib.licenses.xinetd;
30     maintainers = with lib.maintainers; [ fgaz ];
31   };