CLI tool for migrating PDS

feat: add rust tooling to the dev shell

nel.pet 0c0b1d08 47712c67

verified
Changed files
+9 -1
+1
.gitignore
···
/target
/result
+
/.direnv
+8 -1
flake.nix
···
default = pkgs.callPackage ./nix/package.nix {};
});
devShells = forAllSystems (system: pkgs: {
-
default = self.packages.${system}.default;
+
default = self.packages.${system}.default.overrideAttrs (prev: {
+
nativeBuildInputs = with pkgs; [
+
# Additional rust tooling
+
clippy
+
rustfmt
+
rust-analyzer
+
] ++ (prev.nativeBuildInputs or [ ]);
+
});
});
};
}