-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathflake.nix
42 lines (42 loc) · 1.04 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = {
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {
inherit system;
config = {
android_sdk.accept_license = true;
allowUnfree = true;
};
};
flutter_path = "$PWD/.flutter";
flutter = import ./nix/flutter.nix {
inherit pkgs system;
path = flutter_path;
};
in {
devShell = with pkgs;
mkShellNoCC {
buildInputs = [
cocoapods
jdk17
ruby
sops
];
shellHook = ''
${flutter.unpack}/bin/unpack
export PATH="${flutter_path}/flutter/bin:$PATH"
export ANDROID_SDK_ROOT=$HOME/Library/Android/sdk
mkdir -p android/keys
sops -d secrets/fastlane-google-key > android/keys/google.json
'';
};
});
}