Skip to content

Instantly share code, notes, and snippets.

@YuMingLiao
Created July 28, 2018 03:09
Show Gist options
  • Save YuMingLiao/22bf41fe91a04a78130c638a5cd6e049 to your computer and use it in GitHub Desktop.
Save YuMingLiao/22bf41fe91a04a78130c638a5cd6e049 to your computer and use it in GitHub Desktop.
# 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;
overrides = self: super: {
heist = pkgs.haskell.lib.doJailbreak super.heist;
};
};
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