diff --git a/development/tools/cargo-workspace2/Cargo.toml b/development/tools/cargo-workspace2/Cargo.toml index 8c8abb0144e..4f4181d8764 100644 --- a/development/tools/cargo-workspace2/Cargo.toml +++ b/development/tools/cargo-workspace2/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "cargo-workspace2" -version = "0.2.1" +version = "0.2.2" description = "A tool to query and manage complex cargo workspaces" authors = ["Mx Kookie "] documentation = "https://docs.rs/cargo-workspace2" -repository = "https://git.open-communication.net/spacekookie/cargo-workspace2" +repository = "https://dev.spacekookie.de/kookie/nomicon/src/development/tools/cargo-workspace2" license = "GPL-3.0-or-later" edition = "2018" diff --git a/development/tools/cargo-workspace2/shell.nix b/development/tools/cargo-workspace2/shell.nix index e055bd79d18..66c1429799c 100644 --- a/development/tools/cargo-workspace2/shell.nix +++ b/development/tools/cargo-workspace2/shell.nix @@ -1,9 +1,8 @@ -with import { - config.android_sdk.accept_license = true; - config.allowUnfree = true; -}; +with import {}; stdenv.mkDerivation { name = "cargo-workspace2"; - buildInputs = with pkgs; [ clangStdenv ]; + buildInputs = with pkgs; [ + rustc cargo clangStdenv rust-analyzer rustfmt + ]; }