From c6568adb005175fb77ef94fee09aa4e8cc248a60 Mon Sep 17 00:00:00 2001 From: Artturin Date: Mon, 15 Aug 2022 06:40:21 +0300 Subject: treewide: makeWrapper buildInputs to nativeBuildInputs most found with https://github.com/siraben/nix-lint --- pkgs/development/mobile/androidenv/emulator.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/development/mobile/androidenv/emulator.nix') diff --git a/pkgs/development/mobile/androidenv/emulator.nix b/pkgs/development/mobile/androidenv/emulator.nix index 94a76078c47..f68d51c75c3 100644 --- a/pkgs/development/mobile/androidenv/emulator.nix +++ b/pkgs/development/mobile/androidenv/emulator.nix @@ -2,9 +2,9 @@ deployAndroidPackage { inherit package os; - buildInputs = [ makeWrapper ] - ++ lib.optionals (os == "linux") (with pkgs; [ - autoPatchelfHook + nativeBuildInputs = [ makeWrapper ] + ++ lib.optionals (os == "linux") [ autoPatchelfHook ]; + buildInputs = lib.optionals (os == "linux") (with pkgs; [ glibc libcxx libGL -- cgit 1.4.1