aboutsummaryrefslogtreecommitdiff
path: root/development
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2021-02-18 21:29:54 +0100
committerKatharina Fey <kookie@spacekookie.de>2021-02-18 21:29:54 +0100
commit837a0ca6438d1f78a7364c3c7c310dc96e01f31d (patch)
tree3e3289f4efe3f29bed7220bd4be9f4c0c18eaa28 /development
parent12a35f8969264c6acf8afa485cae03369d1d9eaf (diff)
cargo-workspace2: change repository link
Diffstat (limited to 'development')
-rw-r--r--development/tools/cargo-workspace2/Cargo.toml4
-rw-r--r--development/tools/cargo-workspace2/shell.nix9
2 files changed, 6 insertions, 7 deletions
diff --git a/development/tools/cargo-workspace2/Cargo.toml b/development/tools/cargo-workspace2/Cargo.toml
index 8c8abb0144e2..4f4181d8764f 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 <kookie@spacekookie.de>"]
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 e055bd79d189..66c1429799cd 100644
--- a/development/tools/cargo-workspace2/shell.nix
+++ b/development/tools/cargo-workspace2/shell.nix
@@ -1,9 +1,8 @@
-with import <nixpkgs> {
- config.android_sdk.accept_license = true;
- config.allowUnfree = true;
-};
+with import <nixpkgs> {};
stdenv.mkDerivation {
name = "cargo-workspace2";
- buildInputs = with pkgs; [ clangStdenv ];
+ buildInputs = with pkgs; [
+ rustc cargo clangStdenv rust-analyzer rustfmt
+ ];
}