aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/local.lux
blob: b3a3584844603dbc61ca66567188acbed688abc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(.module:
  [library
   [lux #*
    [data
     [text
      ["%" format (#+ format)]]]
    [world
     [net
      ["." uri (#+ URI)]]]]]
  ["." // #_
   ["#." artifact (#+ Version Artifact)]])

(def: / uri.separator)

(def: #export repository
  URI
  (format ".m2" / "repository"))

(def: #export (uri version artifact)
  (-> Version Artifact URI)
  (format ..repository / (//artifact.uri version artifact)))