build: Rust 1.82 is released

This commit is contained in:
oxalica 2024-10-18 09:32:25 -04:00
parent ea69062a6d
commit 3afa73db52
4 changed files with 14 additions and 14 deletions

View file

@ -105,6 +105,10 @@ rec {
env.RUST_LOG = "blahd=debug,blahctl=debug";
};
without-rust = self.devShells.${system}.default.overrideAttrs (old: {
nativeBuildInputs = lib.filter (drv: drv.pname != "rust-default") old.nativeBuildInputs;
});
}
);