csci5607/flake.nix

22 lines
609 B
Nix
Raw Normal View History

2023-01-21 08:03:11 +00:00
{
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 ];
};
2023-01-21 08:55:19 +00:00
toolchain = pkgs.fenix.stable;
2023-01-21 08:03:11 +00:00
in rec {
devShell = pkgs.mkShell {
2023-01-21 09:03:54 +00:00
packages =
(with pkgs; [ cargo-watch cargo-deny cargo-edit zip unzip ])
2023-01-21 08:03:11 +00:00
++ (with toolchain; [ cargo rustc rustfmt clippy ]);
CARGO_UNSTABLE_SPARSE_REGISTRY = "true";
};
});
}