We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a330d7 commit 0d0c32eCopy full SHA for 0d0c32e
pkgs/tools/backup/conserve/default.nix
@@ -1,6 +1,9 @@
1
-{ lib
2
-, rustPlatform
3
-, fetchFromGitHub
+{
+ lib,
+ stdenv,
4
+ rustPlatform,
5
+ fetchFromGitHub,
6
+ darwin
7
}:
8
9
rustPlatform.buildRustPackage rec {
@@ -16,6 +19,10 @@ rustPlatform.buildRustPackage rec {
16
19
17
20
cargoHash = "sha256-IP9x3n5RdI+TKOhMBWEfw9P2CROcC0SmEsmMVaXjiDE=";
18
21
22
+ buildInputs = lib.optionals (stdenv.isDarwin) [
23
+ darwin.apple_sdk.frameworks.Security
24
+ ];
25
+
26
checkFlags = [
27
# expected to panic if unix user has no secondary group,
28
# which is the case in the nix sandbox
0 commit comments