mirror of
https://github.com/urbit/ares.git
synced 2024-11-23 17:24:52 +03:00
19 lines
329 B
Nix
19 lines
329 B
Nix
{ sources ? import ./nix/sources.nix,
|
|
pkgs ? import sources.nixpkgs {
|
|
overlays = [ (import "${sources.fenix}/overlay.nix") ];
|
|
}
|
|
}:
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
(fenix.stable.withComponents [
|
|
"cargo"
|
|
"clippy"
|
|
"rustc"
|
|
"rustfmt"
|
|
"rust-src"
|
|
])
|
|
cargo-watch
|
|
gdb
|
|
];
|
|
}
|