1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 06:31:02 +00:00

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
No known key found for this signature in database
GPG key ID: 846FDED7792617B4

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