diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-02-20 09:02:10 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-20 18:02:10 +0100 |
commit | cbbb6ca4d74391b624eec78059e081bbde61e04f (patch) | |
tree | 463d2cc017d65fe3ddd40d4f819c8368dd928b84 /testament | |
parent | d1fec552d04a000efd7504a3f3d621ea6f57b663 (diff) | |
download | Nim-cbbb6ca4d74391b624eec78059e081bbde61e04f.tar.gz |
important_packages: add fusion (#17094)
Diffstat (limited to 'testament')
-rw-r--r-- | testament/important_packages.nim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testament/important_packages.nim b/testament/important_packages.nim index b5fd26776..b19a99adb 100644 --- a/testament/important_packages.nim +++ b/testament/important_packages.nim @@ -1,3 +1,5 @@ +# xxx instead of pkg1, pkg2, use the more flexible `NIM_TESTAMENT_BATCH` (see #14823). + template pkg1(name: string; cmd = "nimble test"; url = "", useHead = true): untyped = packages1.add((name, cmd, url, useHead)) @@ -39,6 +41,7 @@ pkg1 "easygl", "nim c -o:egl -r src/easygl.nim", "https://github.com/jackmott/ea pkg1 "elvis" # pkg1 "fidget" # pending https://github.com/treeform/fidget/issues/133 pkg1 "fragments", "nim c -r fragments/dsl.nim" +pkg1 "fusion" pkg1 "gara" pkg1 "glob" pkg1 "ggplotnim", "nim c -d:noCairo -r tests/tests.nim" |