diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-10-25T13·18+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-10-25T13·18+0200 |
commit | 82327e3cc474be3c72a22480ad6e219f072e27e0 (patch) | |
tree | cc7005cbd1684049c722a005077327f001936026 /tests/structured-attrs.nix | |
parent | 8191992c83bf4387b03c5fdaba818dc2b520462d (diff) |
exportReferencesGraph: Allow exporting a list of store paths
Diffstat (limited to 'tests/structured-attrs.nix')
-rw-r--r-- | tests/structured-attrs.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/structured-attrs.nix b/tests/structured-attrs.nix index 72e9c6747502..6c77a43913a7 100644 --- a/tests/structured-attrs.nix +++ b/tests/structured-attrs.nix @@ -62,5 +62,5 @@ mkDerivation { "1foobar" = "BAD"; "foo$" = "BAD"; - exportReferencesGraph.refs = dep; + exportReferencesGraph.refs = [ dep ]; } |