Merge pull request #245563 from flokli/fix-jsonnet-darwin

jsonnet: fix build on darwin

authored by

Florian Klink and committed by
GitHub
a0730a32 6540f039

+1
+1
pkgs/development/compilers/jsonnet/default.nix
··· 18 18 cmakeFlags = [ 19 19 "-DUSE_SYSTEM_GTEST=ON" 20 20 "-DBUILD_STATIC_LIBS=${if stdenv.hostPlatform.isStatic then "ON" else "OFF"}" 21 + ] ++ lib.optionals (!stdenv.isDarwin) [ 21 22 "-DBUILD_SHARED_BINARIES=${if stdenv.hostPlatform.isStatic then "OFF" else "ON"}" 22 23 ]; 23 24