ntp: fix ntp-wait script, depends on perl

This commit is contained in:
Franz Pletz
2016-11-21 23:19:04 +01:00
parent 96194467e6
commit 009e37d277

View File

@@ -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" ];