mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
openvpn: fix build
This commit is contained in:
parent
cc0d52846e
commit
f57d22fd05
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, iproute, lzo, openssl, pam, systemd }:
|
||||
{ stdenv, fetchurl, iproute, lzo, openssl, pam, systemd, pkgconfig }:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
patches = optional stdenv.isLinux ./systemd-notify.patch;
|
||||
|
||||
buildInputs = [ iproute lzo openssl pam ] ++ optional stdenv.isLinux systemd;
|
||||
buildInputs = [ iproute lzo openssl pam pkgconfig ] ++ optional stdenv.isLinux systemd;
|
||||
|
||||
configureFlags = ''
|
||||
--enable-password-save
|
||||
|
Loading…
Reference in New Issue
Block a user