From f21e9116e2dea6035aecfc5d82e2bd0ec2074100 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Sat, 13 Jul 2024 00:27:39 +1000 Subject: [PATCH] chore(nix): install `android-tools` in dev-shell (#5855) This contains `adb` which is useful for Android development. --- scripts/nix/flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/nix/flake.nix b/scripts/nix/flake.nix index 16c45eefb..319328d4a 100644 --- a/scripts/nix/flake.nix +++ b/scripts/nix/flake.nix @@ -25,7 +25,7 @@ exec "${pkgs.cargo-udeps}/bin/cargo-udeps" "$@" ''; - libraries = with pkgs;[ + libraries = with pkgs; [ webkitgtk gtk3 cairo @@ -50,6 +50,7 @@ librsvg gnome.zenity desktop-file-utils + android-tools ]; mkShellWithRustVersion = rustVersion: pkgs.mkShell {