opensaml-cpp: fix build for x86_64-linux; shibboleth-sp: fix build for x86_64-linux (#522781)

This commit is contained in:
Peder Bergebakken Sundt
2026-05-24 19:31:47 +00:00
committed by GitHub
2 changed files with 5 additions and 1 deletions
+4 -1
View File
@@ -37,7 +37,10 @@ stdenv.mkDerivation (finalAttrs: {
pkg-config
];
configureFlags = [ "--with-xmltooling=${xml-tooling-c}" ];
configureFlags = [
"--with-boost=${boost.dev}"
"--with-xmltooling=${xml-tooling-c}"
];
env.NIX_CFLAGS_COMPILE = lib.optionalString (!stdenv.hostPlatform.isDarwin) "-std=c++14";
@@ -64,6 +64,7 @@ stdenv.mkDerivation (finalAttrs: {
"--without-apxs"
"--with-xmltooling=${xml-tooling-c}"
"--with-saml=${opensaml-cpp}"
"--with-boost=${boost.dev}"
"--with-fastcgi"
"CXXFLAGS=-std=c++14"
];