diff --git a/.drone.yml b/.drone.yml index 67dc2567..875255c4 100644 --- a/.drone.yml +++ b/.drone.yml @@ -5,6 +5,6 @@ name: default steps: - name: build commands: - - nix-shell --run "flutter build apk --split-per-abi" + - nix-shell --pure --run "flutter build apk --split-per-abi" environment: NIX_PATH: "nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixos:/nix/var/nix/profiles/per-user/root/channels" diff --git a/shell.nix b/shell.nix index 893e6913..3f12f50d 100644 --- a/shell.nix +++ b/shell.nix @@ -1,5 +1,5 @@ { pkgs ? import {} }: pkgs.mkShell { - nativeBuildInputs = [ pkgs.flutter ]; + nativeBuildInputs = with pkgs; [ flutter dart ]; }