mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 14:41:17 +00:00
ntp: fix ntp-wait script, depends on perl
This commit is contained in:
parent
96194467e6
commit
009e37d277
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, openssl, libcap ? null, libseccomp ? null }:
|
||||
{ stdenv, fetchurl, openssl, perl, libcap ? null, libseccomp ? null }:
|
||||
|
||||
assert stdenv.isLinux -> libcap != null;
|
||||
assert stdenv.isLinux -> libseccomp != null;
|
||||
|
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
|||
"--enable-libseccomp"
|
||||
];
|
||||
|
||||
buildInputs = [ libcap openssl libseccomp ];
|
||||
buildInputs = [ libcap openssl libseccomp perl ];
|
||||
|
||||
hardeningEnable = [ "pie" ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue