fix devshell on darwin
This commit is contained in:
parent
97d2c2d623
commit
c158642647
10
shell.nix
10
shell.nix
|
@ -29,16 +29,16 @@ let
|
|||
nix # so in --pure mode we actually find the "correct" nix
|
||||
bash
|
||||
nix-prefetch-git
|
||||
rustPackages.cargo
|
||||
rustPackages.clippy
|
||||
rustPackages.rustfmt
|
||||
rustc
|
||||
cargo
|
||||
clippy
|
||||
rustfmt
|
||||
pkg-config
|
||||
git
|
||||
];
|
||||
buildInputs = with pkgs; [
|
||||
openssl
|
||||
]
|
||||
++ lib.optional stdenv.isDarwin pkgs.darwin.Security;
|
||||
] ++ lib.optionals stdenv.isDarwin [ darwin.Security libiconv ];
|
||||
|
||||
postHook = ''
|
||||
checkPhase() (
|
||||
|
|
Loading…
Reference in a new issue