mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 19:02:57 +00:00
Merge pull request #275884 from philipp-baumann/patch-soci-aarch64-darwin-kerberos
soci: fix darwin build
This commit is contained in:
commit
c10ee5009f
@ -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 New Issue
Block a user