-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Lorenzo Calegari
committed
Aug 10, 2023
1 parent
61958d8
commit 622565c
Showing
13 changed files
with
68 additions
and
35 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,7 +1,11 @@ | ||
# This file is part of the IOGX template and is documented at the link below: | ||
# https://www.github.com/input-output-hk/iogx#39-nixcinix | ||
|
||
{ l, pkgs, ... }: | ||
|
||
{ | ||
includedPaths = [ | ||
"operables" | ||
includedPaths = l.optionals pkgs.stdenv.hostPlatform.isLinux [ | ||
"oci-images" | ||
"operables" | ||
]; | ||
|
||
} |
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,16 +1,10 @@ | ||
# This file is part of the IOGX template and is documented at the link below: | ||
# https://www.github.com/input-output-hk/iogx#38-nixformattersnix | ||
|
||
{ | ||
shellcheck.enable = true; | ||
stylish-haskell.enable = true; | ||
nixpkgs-fmt.enable = true; | ||
prettier.enable = true; | ||
#types_or = [ "javascript" "css" "html" ]; TODO | ||
purs-tidy.enable = true; | ||
# = { TODO | ||
# enable = true; | ||
# name = "purs-tidy"; | ||
# description = "Ensure PureScript files are formatted"; | ||
# entry = "${purescript.purs-tidy}/bin/purs-tidy format-in-place"; | ||
# files = "\\.purs$"; | ||
# language = "system"; | ||
# }; | ||
} |
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,6 @@ | ||
# This file is part of the IOGX template and is documented at the link below: | ||
# https://www.github.com/input-output-hk/iogx#32-nixhaskellnix | ||
|
||
{ | ||
supportedCompilers = ["ghc8107"]; | ||
} |
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 was deleted.
Oops, something went wrong.
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,10 +1,18 @@ | ||
{ nix, inputs', ... }: | ||
# This file is part of the IOGX template and is documented at the link below: | ||
# https://www.github.com/input-output-hk/iogx#35-nixper-system-outputsnix | ||
|
||
{ nix, inputs', projects, ... }: | ||
|
||
{ | ||
packages.generated-purescript = nix.marlowe-playground.generated-purescript; | ||
|
||
packages.marlowe-playground-client = nix.marlowe-playground.marlowe-playground-client; | ||
|
||
packages.marlowe-playground-server = inputs'.self.apps.marlowe-playground-server; | ||
packages.marlowe-playground-server = inputs'.self.packages.marlowe-playground-server-exe-marlowe-playground-server-ghc8107; | ||
|
||
packages.playwright = nix.marlowe-playground.playwright; | ||
|
||
operables = nix.marlowe-cardano.operables projects.default; | ||
|
||
oci-images = nix.marlowe-cardano.oci-images; | ||
} |
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