From 009e37d277328b8d28d85db149f996100486c72b Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Mon, 21 Nov 2016 23:19:04 +0100 Subject: [PATCH] ntp: fix ntp-wait script, depends on perl --- pkgs/tools/networking/ntp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/ntp/default.nix b/pkgs/tools/networking/ntp/default.nix index 445cb1fb393..a37b1bdbd98 100644 --- a/pkgs/tools/networking/ntp/default.nix +++ b/pkgs/tools/networking/ntp/default.nix @@ -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" ];