mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
xinetd: fix build w/glibc-2.32
This commit is contained in:
parent
7cb4052794
commit
453add53dc
@ -1,4 +1,4 @@
|
||||
{ fetchurl, fetchpatch, stdenv }:
|
||||
{ fetchurl, fetchpatch, stdenv, libtirpc }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "xinetd-2.3.15";
|
||||
@ -16,6 +16,11 @@ stdenv.mkDerivation rec {
|
||||
})
|
||||
];
|
||||
|
||||
buildInputs = [ libtirpc ];
|
||||
|
||||
NIX_CFLAGS_COMPILE = [ "-I${libtirpc.dev}/include/tirpc" ];
|
||||
NIX_LDFLAGS = [ "-ltirpc" ];
|
||||
|
||||
meta = {
|
||||
description = "Secure replacement for inetd";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
|
Loading…
Reference in New Issue
Block a user