-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from mlabs-haskell/sean/typedCoreFn.test-infra
Sean/typed core fn.test infra
- Loading branch information
Showing
105 changed files
with
3,447 additions
and
540 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 +1 @@ | ||
use nix | ||
use flake |
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 |
---|---|---|
|
@@ -38,3 +38,6 @@ TAGS | |
*.ps | ||
*.svg | ||
tests/purs/make/ | ||
.direnv/ | ||
/.pre-commit-config.yaml | ||
/result* |
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
perSystem = { self', pkgs, config, ... }: | ||
let | ||
cardanoPackages = pkgs.fetchFromGitHub { | ||
owner = "input-output-hk"; | ||
repo = "cardano-haskell-packages"; | ||
rev = "3df392af2a61d61bdac1afd9c3674f27d6aa8efc"; # branch: repo | ||
hash = "sha256-vvm56KzA6jEkG3mvwh1LEdK4H4FKxeoOJNz90H8l8dQ="; | ||
}; | ||
|
||
purus = config.libHaskell.mkPackage { | ||
name = "purus"; | ||
src = ./.; | ||
|
||
externalRepositories = { | ||
"https://input-output-hk.github.io/cardano-haskell-packages" = cardanoPackages; | ||
}; | ||
}; | ||
in | ||
{ | ||
devShells.purus = purus.devShell; | ||
|
||
packages = { | ||
purs = purus.packages."purescript:exe:purs"; | ||
}; | ||
|
||
apps = { | ||
purs.program = "${self'.packages.purs}/bin/purs"; | ||
}; | ||
}; | ||
} |
Oops, something went wrong.