-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Setup projectFile path parsing * Disable the damned OverloadedLists * Parse JSON config * Add error * wip * wip * refactor * Refactor * wip * wip * Fix compilation * Remove event-sourcing from CLI * Parse JSON * Nix file * Update * Fix * deps * Update * Fix deps on darwin * Generate cabal and nix file * Build properly * Add neo.build * Start working on Task * Refactor errors * Add utf8 by default * Update * Retrieve nhcore * Evaluate Nix expression * Update * update * Remove optenv-conf * Update gitignore * Remove devenv * "working" build * Add FIXME comments * update * Update * Update envrc * Move files into .neohaskell * Walk dirs * Update * Remove leading path Co-authored-by: CoderCris Æ <[email protected]> * Update * Update * Fix recursive directory copying --------- Co-authored-by: Nikita Tchayka <[email protected]> Co-authored-by: Nick Seagull <[email protected]> Co-authored-by: CoderCris Æ <[email protected]>
- Loading branch information
1 parent
deb9780
commit 6c03d95
Showing
55 changed files
with
1,094 additions
and
668 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
source_url "https://raw.githubusercontent.com/cachix/devenv/d1f7b48e35e6dee421cfd0f51481d17f77586997/direnvrc" "sha256-YBzqskFZxmNb3kYVoKD9ZixoPXJh1C9ZvTLGFRkauZ0=" | ||
|
||
use devenv | ||
use nix |
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
packages: | ||
*/*.cabal | ||
cli/*.cabal | ||
core/*.cabal |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
module Main where | ||
|
||
import Core | ||
import qualified Neo | ||
import Neo qualified | ||
import Task qualified | ||
|
||
|
||
main :: IO Unit | ||
main = Neo.main | ||
main :: IO () | ||
main = Task.runOrPanic Neo.run |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ pkgs ? import ../nix/nixpkgs.nix { } }: | ||
pkgs.haskellPackages.developPackage { | ||
root = ./.; | ||
source-overrides = { | ||
nhcore = ../core; | ||
}; | ||
modifier = drv: pkgs.haskell.lib.dontHaddock drv; | ||
} |
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
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
Oops, something went wrong.