This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-11-30
Channels
- # adventofcode (3)
- # announcements (4)
- # babashka (42)
- # beginners (56)
- # biff (23)
- # cider (8)
- # clj-yaml (2)
- # cljdoc (16)
- # clojure (83)
- # clojure-europe (52)
- # clojure-nl (3)
- # clojure-norway (4)
- # clojure-sweden (2)
- # clojure-uk (2)
- # clojurebridge (1)
- # clojurescript (2)
- # cloverage (1)
- # cursive (11)
- # data-oriented-programming (1)
- # deps-new (2)
- # dev-tooling (2)
- # emacs (3)
- # etaoin (4)
- # events (5)
- # fulcro (5)
- # gratitude (3)
- # java (3)
- # jobs (1)
- # jobs-discuss (1)
- # joyride (33)
- # malli (16)
- # music (1)
- # nbb (1)
- # nrepl (4)
- # nyc (1)
- # off-topic (25)
- # pathom (8)
- # re-frame (1)
- # reitit (7)
- # remote-jobs (2)
- # shadow-cljs (6)
- # tools-deps (9)
Is it possible to set the GITLIBS directory within the deps.edn
file and furthermore within an alias? I expect no, given https://ask.clojure.org/index.php/11711/set-mvn-local-repo-via-alias about setting :mvn/local-repo
in an alias
Would you like an Ask ticket for this?
I'm not sure it's feasible to implement
Oh? That's surprising to me. If you don't mind, what makes it hard to implement?
the deps process is the things that reads and interprets the deps.edn so in general, things that affect its environment have to be not in deps.edn
I guess gitlibs can be configured via Java system property, and maybe it would be possible to read the deps.edn, and set that before resolving deps. but I'd have to think about whether there is a good place to even do that right now