diff options
author | Justin Bedo <cu@cua0.org> | 2021-06-25 09:59:36 +1000 |
---|---|---|
committer | Justin Bedo <cu@cua0.org> | 2021-06-25 09:59:36 +1000 |
commit | 134f5e0bfcd5f22e3adee4b707e10693cf71e635 (patch) | |
tree | 5e58cba970880c978f5f229dfceffdb06377b3e7 | |
parent | beb265487710d3e578d24e3c385b128eb98dbb19 (diff) |
linkOutputs: passthrough the inputs to make it easier for downstream expressions to refer to build products
-rw-r--r-- | default.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/default.nix b/default.nix index 2e98d6d..1944de0 100644 --- a/default.nix +++ b/default.nix @@ -104,6 +104,7 @@ let in '' mkdir $out '' + (concatStringsSep "\n" (mapAttrsToList link x)); + passthru.linkInputs = x; }; # Fetching files of specific type |