tangled
alpha
login
or
join now
nel.pet
/
pds-migrate
6
fork
atom
CLI tool for migrating PDS
6
fork
atom
overview
issues
pulls
pipelines
feat: add rust tooling to the dev shell
nel.pet
6 months ago
0c0b1d08
47712c67
verified
This commit was signed with the committer's
known signature
.
nel.pet
SSH Key Fingerprint:
SHA256:Zd+mWw4EweOfjYKNMYyVtMSN7oj+SBabmubG4RThVEI=
+9
-1
2 changed files
expand all
collapse all
unified
split
.gitignore
flake.nix
+1
.gitignore
···
1
1
/target
2
2
/result
3
3
+
/.direnv
+8
-1
flake.nix
···
15
15
default = pkgs.callPackage ./nix/package.nix {};
16
16
});
17
17
devShells = forAllSystems (system: pkgs: {
18
18
-
default = self.packages.${system}.default;
18
18
+
default = self.packages.${system}.default.overrideAttrs (prev: {
19
19
+
nativeBuildInputs = with pkgs; [
20
20
+
# Additional rust tooling
21
21
+
clippy
22
22
+
rustfmt
23
23
+
rust-analyzer
24
24
+
] ++ (prev.nativeBuildInputs or [ ]);
25
25
+
});
19
26
});
20
27
};
21
28
}