csci5607/flake.nix

42 lines
1.1 KiB
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-02-01 22:13:48 +00:00
packages = (with pkgs; [
cargo-deny
cargo-edit
2023-02-25 21:50:13 +00:00
cargo-expand
2023-02-15 19:09:56 +00:00
cargo-flamegraph
cargo-watch
imagemagick
2023-02-15 23:13:22 +00:00
linuxPackages_latest.perf
2023-02-01 22:13:48 +00:00
pandoc
2023-03-03 07:58:45 +00:00
poppler_utils
2023-02-01 22:13:48 +00:00
texlive.combined.scheme-full
2023-02-15 19:09:56 +00:00
unzip
zip
2023-02-05 04:55:07 +00:00
2023-03-03 07:58:45 +00:00
(python310.withPackages (p: with p; [ ipython numpy scipy sympy ]))
2023-02-01 22:13:48 +00:00
]) ++ (with toolchain; [
cargo
rustc
clippy
2023-01-31 20:41:23 +00:00
2023-02-01 22:13:48 +00:00
# Get the nightly version of rustfmt so we can wrap comments
pkgs.fenix.default.rustfmt
]);
2023-01-21 08:03:11 +00:00
CARGO_UNSTABLE_SPARSE_REGISTRY = "true";
};
});
}