Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- { system ? builtins.currentSystem # TODO: Get rid of this system cruft
- , iosSdkVersion ? "10.2"
- , withHoogle ? false # to spin up localhost:8080 hoogle use: nix-shell --arg withHoogle true -A shells.ghc --command "hoogle server -p 8080 --local"
- }:
- with import ./.obelisk/impl { inherit system iosSdkVersion; };
- let
- reflexUtilsSrc = fetchGit {
- url = https://github.com/atidot/reflex-utils;
- rev = "c3c13716ae53f6fefdddc673640d861e91383c56";
- };
- reflexCodeMirrorSrc = fetchGit {
- url = https://github.com/Atidot/reflex-codemirror;
- rev = "b115596528f26a9574d8bc48eb792b32d64abfb4";
- };
- exploitSrc = import ../. {};
- # exploitSrc = fetchGit {
- # url = https://github.com/santiweight/exploit-haskell.git;
- # ref = "polysemy";
- # };
- in
- project ./. ({ hackGet, ... }: {
- inherit withHoogle;
- packages = {
- reflex-dom-echarts = hackGet ./deps/reflex-dom-echarts;
- echarts-jsdom = hackGet ./deps/echarts-jsdom;
- reflex-codemirror = reflexCodeMirrorSrc;
- # reflex-codemirror = ./deps/reflex-codemirror;
- reflex-utils = reflexUtilsSrc;
- exploit-poker = exploitSrc;
- };
- })
Advertisement
Add Comment
Please, Sign In to add comment