We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d74d174 + de8ff28 commit cd69e22Copy full SHA for cd69e22
pkgs/build-support/fetchmavenartifact/default.nix
@@ -31,6 +31,8 @@ args@{
31
# and `urls` can be specified, not both.
32
url ? "",
33
urls ? [ ],
34
+ # Metadata
35
+ meta ? { },
36
# The rest of the arguments are just forwarded to `fetchurl`.
37
...
38
}:
@@ -71,6 +73,7 @@ let
71
73
"classifier"
72
74
"repos"
75
"url"
76
+ "meta"
77
]
78
// {
79
urls = urls_;
@@ -79,7 +82,7 @@ let
82
);
80
83
in
81
84
stdenv.mkDerivation {
- inherit pname version;
85
+ inherit pname version meta;
86
dontUnpack = true;
87
# By moving the jar to $out/share/java we make it discoverable by java
88
# packages packages that mention this derivation in their buildInputs.
0 commit comments