Skip to content

Instantly share code, notes, and snippets.

@YuMingLiao
Created July 28, 2018 02:48

Revisions

  1. YuMingLiao created this gist Jul 28, 2018.
    16 changes: 16 additions & 0 deletions default.nix
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,16 @@
    # 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"];
    };
    })