protonmail-bridge: fix for building on unstable

At some point the propagation logic is being changed such that
nativeBuildInputs isn't included in buildInputs, which means that
pkg-config can't see anything in nativeBuildInputs.
This commit is contained in:
xeals 2020-10-17 15:34:29 +11:00
parent f66f6445ea
commit cec9f93414
Signed by: xeals
GPG Key ID: A498C7AF27EC6B5C

View File

@ -33,6 +33,9 @@ let
nativeBuildInputs = (args.nativeBuildInputs or [ ]) ++ [ nativeBuildInputs = (args.nativeBuildInputs or [ ]) ++ [
pkg-config pkg-config
];
buildInputs = (args.buildInputs or [ ]) ++ [
libsecret libsecret
]; ];
@ -58,7 +61,6 @@ let
}; };
}); });
in in
{ {