Try passing Security for ofborg
This commit is contained in:
parent
37324e6ed6
commit
b1213d6374
11
default.nix
11
default.nix
|
@ -10,7 +10,16 @@ let
|
|||
chmod -R a-w $out
|
||||
'';
|
||||
in {
|
||||
ofborg.rs = stripDeps (pkgs.callPackage ./nix/ofborg-carnix.nix {}).ofborg_0_1_0;
|
||||
ofborg.rs = let
|
||||
build = (pkgs.callPackage ./nix/ofborg-carnix.nix {})
|
||||
.ofborg_0_1_0.override {
|
||||
crateOverrides = {
|
||||
buildDependencies = pkgs.lib.optionals
|
||||
pkgs.stdenv.isDarwin
|
||||
[ pkgs.darwin.apple_sdk.frameworks.Security ];
|
||||
};
|
||||
};
|
||||
in stripDeps build;
|
||||
ircbot = stripDeps (pkgs.callPackage ./nix/ircbot-carnix.nix {}).ircbot_0_1_0;
|
||||
|
||||
ofborg.php = pkgs.runCommand
|
||||
|
|
Loading…
Reference in a new issue