mirror of
https://github.com/msfjarvis/gitice
synced 2025-08-14 11:47:01 +05:30
15 lines
395 B
Nix
15 lines
395 B
Nix
with import <nixpkgs> { overlays = [ (import <rust-overlay>) ]; };
|
|
mkShell {
|
|
RUSTFLAGS = "";
|
|
buildInputs = [
|
|
(rust-bin.selectLatestNightlyWith (toolchain:
|
|
toolchain.default.override {
|
|
extensions = [ "rust-src" "rustfmt-preview" ];
|
|
}))
|
|
pkg-config
|
|
openssl
|
|
clang_12
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
pkgs.darwin.apple_sdk.frameworks.Security
|
|
];
|
|
}
|