mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 13:57:10 +03:00
rpcbind: Fix build with libnsl
This commit is contained in:
parent
15e42939cc
commit
0364cf6620
@ -1,4 +1,4 @@
|
||||
{ fetchurl, stdenv, pkgconfig, libtirpc
|
||||
{ fetchurl, stdenv, pkgconfig, libnsl, libtirpc
|
||||
, useSystemd ? true, systemd }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
||||
./sunrpc.patch
|
||||
];
|
||||
|
||||
buildInputs = [ libtirpc ]
|
||||
buildInputs = [ libnsl libtirpc ]
|
||||
++ stdenv.lib.optional useSystemd systemd;
|
||||
|
||||
configureFlags = [
|
||||
|
Loading…
Reference in New Issue
Block a user