ntp: Don't use seccomp on non-x86

It only has the allowed system call numbers defined for i386 and x86_64
so it fails to build otherwise.
This commit is contained in:
Tuomas Tynkkynen 2016-11-26 20:38:17 +02:00
parent e24df8ea69
commit 2d679dbe74

View file

@ -1,8 +1,12 @@
{ stdenv, fetchurl, openssl, perl, libcap ? null, libseccomp ? null }:
{ stdenv, lib, fetchurl, openssl, perl, libcap ? null, libseccomp ? null }:
assert stdenv.isLinux -> libcap != null;
assert stdenv.isLinux -> libseccomp != null;
let
withSeccomp = stdenv.isLinux && (stdenv.isi686 || stdenv.isx86_64);
in
stdenv.mkDerivation rec {
name = "ntp-4.2.8p9";
@ -17,12 +21,10 @@ stdenv.mkDerivation rec {
"--with-openssl-libdir=${openssl.out}/lib"
"--with-openssl-incdir=${openssl.dev}/include"
"--enable-ignore-dns-errors"
] ++ stdenv.lib.optionals stdenv.isLinux [
"--enable-linuxcaps"
"--enable-libseccomp"
];
] ++ stdenv.lib.optional stdenv.isLinux "--enable-linuxcaps"
++ stdenv.lib.optional withSeccomp "--enable-libseccomp";
buildInputs = [ libcap openssl libseccomp perl ];
buildInputs = [ libcap openssl perl ] ++ lib.optional withSeccomp libseccomp;
hardeningEnable = [ "pie" ];