summary refs log tree commit diff
path: root/pkgs/tools/networking/ntp
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2016-11-21 23:19:04 +0100
committerFranz Pletz <fpletz@fnordicwalking.de>2016-11-21 23:25:21 +0100
commit009e37d277328b8d28d85db149f996100486c72b (patch)
tree92f81b1acac1a0b0aa89262e6690f47908bacc4b /pkgs/tools/networking/ntp
parent96194467e6200baabf072fe4fd4d0ceecdeb5e1c (diff)
downloadnixlib-009e37d277328b8d28d85db149f996100486c72b.tar
nixlib-009e37d277328b8d28d85db149f996100486c72b.tar.gz
nixlib-009e37d277328b8d28d85db149f996100486c72b.tar.bz2
nixlib-009e37d277328b8d28d85db149f996100486c72b.tar.lz
nixlib-009e37d277328b8d28d85db149f996100486c72b.tar.xz
nixlib-009e37d277328b8d28d85db149f996100486c72b.tar.zst
nixlib-009e37d277328b8d28d85db149f996100486c72b.zip
ntp: fix ntp-wait script, depends on perl
Diffstat (limited to 'pkgs/tools/networking/ntp')
-rw-r--r--pkgs/tools/networking/ntp/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/ntp/default.nix b/pkgs/tools/networking/ntp/default.nix
index 445cb1fb3931..a37b1bdbd98a 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" ];