Skip to content

Instantly share code, notes, and snippets.

@YuMingLiao
Created August 3, 2018 03:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YuMingLiao/9936f998df86d14fc24869e413f789bd to your computer and use it in GitHub Desktop.
Save YuMingLiao/9936f998df86d14fc24869e413f789bd to your computer and use it in GitHub Desktop.
# default.nix
(import ./reflex-platform {}).project ({ pkgs, ... }: {
overrides = self: super: {
heist = pkgs.haskell.lib.doJailbreak super.heist;
map-syntax = pkgs.haskell.lib.doJailbreak super.map-syntax;
};
packages = {
common = ./common;
backend = ./backend;
frontend = ./frontend;
google-maps-reflex = ./google-maps-reflex;
};
shells = {
ghc = ["common" "backend" "frontend" "heist"]; # "backend" "frontend"];
ghcjs = ["common" "frontend"];
};
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment