27 lines
1.0 KiB
Nix
27 lines
1.0 KiB
Nix
{ system ? builtins.currentSystem
|
|
, obelisk ? import ./.obelisk/impl {
|
|
inherit system;
|
|
iosSdkVersion = "16.1";
|
|
|
|
# You must accept the Android Software Development Kit License Agreement at
|
|
# https://developer.android.com/studio/terms in order to build Android apps.
|
|
# Uncomment and set this to `true` to indicate your acceptance:
|
|
# config.android_sdk.accept_license = false;
|
|
|
|
# In order to use Let's Encrypt for HTTPS deployments you must accept
|
|
# their terms of service at https://letsencrypt.org/repository/.
|
|
# Uncomment and set this to `true` to indicate your acceptance:
|
|
# terms.security.acme.acceptTerms = false;
|
|
}
|
|
}:
|
|
with obelisk;
|
|
project ./. ({ hackGet, ... }: {
|
|
android.applicationId = "systems.obsidian.obelisk.examples.minimal";
|
|
android.displayName = "Obelisk Minimal Example";
|
|
ios.bundleIdentifier = "systems.obsidian.obelisk.examples.minimal";
|
|
ios.bundleName = "Obelisk Minimal Example";
|
|
overrides = self: super: {
|
|
toy-datalog = self.callCabal2nix "toy-datalog" (hackGet ./dep/toy-datalog) {};
|
|
};
|
|
})
|