glog: Enable generation of pkg-config .pc file so dependents can find it

glog 0.7.0 changed the default to off:
e1f424a7e2
This commit is contained in:
Niklas Hambüchen 2025-05-25 20:58:21 +00:00
commit c9bccd97ca

View file

@ -38,6 +38,8 @@ stdenv.mkDerivation (finalAttrs: {
# consumers of the CMake config file to fail at the configuration step. # consumers of the CMake config file to fail at the configuration step.
# Explicitly disabling unwind support sidesteps the issue. # Explicitly disabling unwind support sidesteps the issue.
"-DWITH_UNWIND=OFF" "-DWITH_UNWIND=OFF"
# Enable pkg-config support so that a `.pc` file is generated.
"-DWITH_PKGCONFIG=ON"
]; ];
doCheck = true; doCheck = true;