mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 11:36:07 +01:00
16 lines
330 B
Nix
16 lines
330 B
Nix
# Copyright (c) 2019-2022, see AUTHORS. Licensed under MIT License, see LICENSE.
|
|
|
|
{ config, nixpkgs, system }:
|
|
|
|
{
|
|
inherit system;
|
|
|
|
crossSystem = {
|
|
config = "${config.build.arch}-unknown-linux-android";
|
|
sdkVer = "32";
|
|
libc = "bionic";
|
|
useAndroidPrebuilt = false;
|
|
useLLVM = true;
|
|
isStatic = true;
|
|
};
|
|
}
|