{
name = "kitchen-async";
path = pkgs.fetchMavenArtifact {
inherit repos;
artifactId = "kitchen-async";
groupId = "kitchen-async";
sha512 = "0d6f8ce7b94b538e00e4a6719362dfe121b0db303906f46b638943c087ac1861442ea4896211110a06a01ecd5fab44dc7deb3b26d918c263be18751ff783492c";
version = "0.1.0-SNAPSHOT";
};
}
Seems if you provide the url attribute to the artifact it will work.
I stumbled upon https://clojars.org/kitchen-async/versions/0.1.0-SNAPSHOT
Which will generate:
This will look for:
https://repo.clojars.org/kitchen-async/kitchen-async/0.1.0-SNAPSHOT/kitchen-async-0.1.0-SNAPSHOT.jar
However, the resulting artifact won't exist:
https://repo.clojars.org/kitchen-async/kitchen-async/0.1.0-SNAPSHOT/
Seems if you provide the url attribute to the artifact it will work.