aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/package.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-09-03 21:51:30 -0400
committerEduardo Julian2021-09-03 21:51:30 -0400
commit891b1cfc82322f8017f0a4f6b707d6fe52024545 (patch)
tree957429c0a2ad850b3570492deabe054fb2ace63e /stdlib/source/program/aedifex/package.lux
parente76add6e6f904677f5c09bb2a66dce283f1b848a (diff)
Unified tuple and record syntax.
Diffstat (limited to 'stdlib/source/program/aedifex/package.lux')
-rw-r--r--stdlib/source/program/aedifex/package.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/program/aedifex/package.lux b/stdlib/source/program/aedifex/package.lux
index 49aa2867e..54994e50b 100644
--- a/stdlib/source/program/aedifex/package.lux
+++ b/stdlib/source/program/aedifex/package.lux
@@ -30,9 +30,9 @@
(type: .public Package
(Record
- {#origin Origin
+ [#origin Origin
#library [Binary Status]
- #pom [XML Binary Status]}))
+ #pom [XML Binary Status]]))
(template [<name> <tag>]
[(def: .public (<name> package)
@@ -50,7 +50,7 @@
(def: .public (local pom library)
(-> XML Binary Package)
- {#origin (#//origin.Local "")
+ [#origin (#//origin.Local "")
#library [library
(#//status.Verified (//hash.sha-1 library)
(//hash.md5 library))]
@@ -58,7 +58,7 @@
[pom
binary_pom
(#//status.Verified (//hash.sha-1 binary_pom)
- (//hash.md5 binary_pom))])})
+ (//hash.md5 binary_pom))])])
(def: .public dependencies
(-> Package (Try (Set Dependency)))