Skip to content

Commit

Permalink
rpcbind: Fix build with libnsl
Browse files Browse the repository at this point in the history
  • Loading branch information
dezgeg committed Nov 7, 2017
1 parent 15e4293 commit 0364cf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/servers/rpcbind/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ fetchurl, stdenv, pkgconfig, libtirpc
{ fetchurl, stdenv, pkgconfig, libnsl, libtirpc
, useSystemd ? true, systemd }:

stdenv.mkDerivation rec {
Expand All @@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
./sunrpc.patch
];

buildInputs = [ libtirpc ]
buildInputs = [ libnsl libtirpc ]
++ stdenv.lib.optional useSystemd systemd;

configureFlags = [
Expand Down

0 comments on commit 0364cf6

Please sign in to comment.