14 lines
234 B
Nix
14 lines
234 B
Nix
let
|
|
pkgs = import <nixpkgs> {};
|
|
in
|
|
rec {
|
|
myfirstapp = import ./myfirstapp {
|
|
inherit (pkgs) androidenv;
|
|
};
|
|
|
|
emulate_myfirstapp = import ./emulate-myfirstapp {
|
|
inherit (pkgs) androidenv;
|
|
inherit myfirstapp;
|
|
};
|
|
}
|