Created
July 28, 2018 02:48
-
-
Save YuMingLiao/5e9db4a59493802d214633a300b8d335 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# default.nix | |
(import ./reflex-platform {}).project ({ pkgs, ... }: { | |
packages = { | |
common = ./common; | |
backend = ./backend; | |
frontend = ./frontend; | |
google-maps-reflex = ./google-maps-reflex; | |
# heist = pkgs.haskell.lib.doJailbreak pkgs.haskellPackages.heist.src; | |
heist = pkgs.haskellPackages.heist.src; | |
}; | |
shells = { | |
ghc = ["common" "backend" "frontend"]; # "backend" "frontend"]; | |
ghcjs = ["common" "frontend"]; | |
}; | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment