-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdefault.nix
22 lines (19 loc) · 840 Bytes
/
default.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ system ? builtins.currentSystem # TODO: Get rid of this system cruft
, iosSdkVersion ? "10.2"
}:
with import ./.obelisk/impl { inherit system iosSdkVersion; };
project ./. ({ ... }: {
overrides = (self: super: let
rfx-canvas = import ./nix/reflex-dom-canvas.nix;
rfx-svg = import ./nix/reflex-dom-svg.nix;
in {
ghc = super.ghc // { withPackages = super.ghc.withHoogle; };
ghcWithPackages = self.ghc.withPackages;
reflex-dom-svg = self.callCabal2nix "reflex-dom-svg" rfx-svg {};
reflex-dom-canvas = self.callCabal2nix "reflex-dom-canvas" rfx-canvas {};
});
# android.applicationId = "systems.obsidian.obelisk.examples.minimal";
# android.displayName = "Obelisk Minimal Example";
# ios.bundleIdentifier = "systems.obsidian.obelisk.examples.minimal";
# ios.bundleName = "Obelisk Minimal Example";
})