Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Only apply patch on darwin

(cherry picked from commit 4e96d0e2b7a87197610e7fea3a1c486ceda58c8a)

authored by

Matthew Pickering and committed by
Daiderd Jordan
ec191e7d 4ab4af1b

+2 -2
+2 -2
pkgs/development/libraries/qca-qt5/default.nix
··· 12 nativeBuildInputs = [ cmake pkgconfig ]; 13 14 # Without this patch cmake fails with a "No known features for CXX compiler" 15 - # error 16 - patches = [./move-project.patch]; 17 18 # tells CMake to use this CA bundle file if it is accessible 19 preConfigure = ''export QC_CERTSTORE_PATH=/etc/ssl/certs/ca-certificates.crt'';
··· 12 nativeBuildInputs = [ cmake pkgconfig ]; 13 14 # Without this patch cmake fails with a "No known features for CXX compiler" 15 + # error on darwin 16 + patches = stdenv.lib.optional stdenv.isDarwin ./move-project.patch ; 17 18 # tells CMake to use this CA bundle file if it is accessible 19 preConfigure = ''export QC_CERTSTORE_PATH=/etc/ssl/certs/ca-certificates.crt'';