tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
opensaml-cpp: fix darwin builds
Mathew Polzin
2 years ago
0bc4e80c
12b3c434
+5
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
opensaml-cpp
default.nix
+5
-2
pkgs/development/libraries/opensaml-cpp/default.nix
···
1
{ lib, stdenv, fetchgit, autoreconfHook, pkg-config
2
-
, boost, openssl, log4shib, xercesc, xml-security-c, xml-tooling-c, zlib
3
}:
4
5
stdenv.mkDerivation rec {
···
14
15
buildInputs = [
16
boost openssl log4shib xercesc xml-security-c xml-tooling-c zlib
17
-
];
0
0
0
18
nativeBuildInputs = [ autoreconfHook pkg-config ];
19
20
configureFlags = [ "--with-xmltooling=${xml-tooling-c}" ];
···
1
{ lib, stdenv, fetchgit, autoreconfHook, pkg-config
2
+
, darwin, boost, openssl, log4shib, xercesc, xml-security-c, xml-tooling-c, zlib
3
}:
4
5
stdenv.mkDerivation rec {
···
14
15
buildInputs = [
16
boost openssl log4shib xercesc xml-security-c xml-tooling-c zlib
17
+
] ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
18
+
CoreServices
19
+
SystemConfiguration
20
+
]);
21
nativeBuildInputs = [ autoreconfHook pkg-config ];
22
23
configureFlags = [ "--with-xmltooling=${xml-tooling-c}" ];