aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/package.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/program/aedifex/package.lux')
-rw-r--r--stdlib/source/program/aedifex/package.lux12
1 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/program/aedifex/package.lux b/stdlib/source/program/aedifex/package.lux
index bd149b0d9..62757c9b0 100644
--- a/stdlib/source/program/aedifex/package.lux
+++ b/stdlib/source/program/aedifex/package.lux
@@ -38,7 +38,7 @@
[(def: .public (<name> package)
(-> Package Bit)
(case (value@ #origin package)
- (<tag> _)
+ {<tag> _}
true
_
@@ -50,15 +50,15 @@
(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))]
+ {#//status.Verified (//hash.sha-1 library)
+ (//hash.md5 library)}]
#pom (let [binary_pom (|> pom (\ xml.codec encoded) (\ utf8.codec encoded))]
[pom
binary_pom
- (#//status.Verified (//hash.sha-1 binary_pom)
- (//hash.md5 binary_pom))])])
+ {#//status.Verified (//hash.sha-1 binary_pom)
+ (//hash.md5 binary_pom)}])])
(def: .public dependencies
(-> Package (Try (Set Dependency)))