Merge pull request #275884 from philipp-baumann/patch-soci-aarch64-darwin-kerberos
soci: fix darwin build
This commit is contained in:
commit
c10ee5009f
1 changed files with 6 additions and 1 deletions
|
@ -4,9 +4,12 @@
|
|||
, sqlite
|
||||
, postgresql
|
||||
, boost
|
||||
, darwin
|
||||
, lib, stdenv
|
||||
}:
|
||||
|
||||
let
|
||||
inherit (darwin.apple_sdk_11_0.frameworks) Kerberos;
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "soci";
|
||||
version = "4.0.2";
|
||||
|
@ -34,6 +37,8 @@ stdenv.mkDerivation rec {
|
|||
sqlite
|
||||
postgresql
|
||||
boost
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
Kerberos
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue