36 lines
874 B
Nix
36 lines
874 B
Nix
|
{
|
||
|
inputs = { fenix.url = "github:nix-community/fenix"; };
|
||
|
|
||
|
outputs = { self, nixpkgs, flake-utils, fenix }:
|
||
|
flake-utils.lib.eachDefaultSystem (system:
|
||
|
let
|
||
|
pkgs = import nixpkgs {
|
||
|
inherit system;
|
||
|
overlays = [ fenix.overlays.default ];
|
||
|
};
|
||
|
|
||
|
toolchain = pkgs.fenix.stable;
|
||
|
in rec {
|
||
|
devShell = pkgs.mkShell {
|
||
|
packages = (with pkgs; [
|
||
|
cargo-deny
|
||
|
cargo-edit
|
||
|
cargo-expand
|
||
|
cargo-flamegraph
|
||
|
cargo-watch
|
||
|
|
||
|
deno
|
||
|
|
||
|
(python310.withPackages (p: with p; [ ipython numpy scipy sympy ]))
|
||
|
]) ++ (with toolchain; [
|
||
|
cargo
|
||
|
rustc
|
||
|
clippy
|
||
|
|
||
|
# Get the nightly version of rustfmt so we can wrap comments
|
||
|
pkgs.fenix.default.rustfmt
|
||
|
]);
|
||
|
};
|
||
|
});
|
||
|
}
|