Compare commits

..

No commits in common. "a5e8ffeb63a193e5b0e020e4c014687e57f85c23" and "b53510c5b74bc8d52e25bcdb517b38fa60f67a67" have entirely different histories.

3 changed files with 11 additions and 18 deletions

View file

@ -1,3 +0,0 @@
[target.x86_64-unknown-linux-gnu]
linker = "clang"
rustflags = ["-C", "link-arg=-fuse-ld=mold"]

View file

@ -48,9 +48,6 @@
pkgsSrc = nixpkgs;
cargo2nixOverlay = cargo2nix.overlays.default;
release = false;
}).workspaceShell { packages = with pkgs; [
rustfmt
mold
]; };
}).workspaceShell { packages = [ pkgs.rustfmt ]; };
});
}

View file

@ -15,17 +15,16 @@ in {
# --- Rust Shell ---
# Use it to compile Garage
rust = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
#rustPlatform.rust.rustc
rustPlatform.rust.cargo
mold
#clippy
rustfmt
#perl
#protobuf
#pkg-config
#openssl
file
nativeBuildInputs = [
#pkgs.rustPlatform.rust.rustc
pkgs.rustPlatform.rust.cargo
#pkgs.clippy
pkgs.rustfmt
#pkgs.perl
#pkgs.protobuf
#pkgs.pkg-config
#pkgs.openssl
pkgs.file
#cargo2nix.packages.x86_64-linux.cargo2nix
];
};