From 90b5e692846d9b7a951155c5ed4fc7cf72b08e31 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 18 Nov 2013 10:21:12 +0000 Subject: Support quoted attribute names in -A This is requires if you have attribute names with dots in them. So you can now say: $ nix-instantiate '' -A 'config.systemd.units."postgresql.service".text' --eval-only Fixes #151. --- tests/export-graph.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/export-graph.nix') diff --git a/tests/export-graph.nix b/tests/export-graph.nix index 3a0b0368d6ca..fdac9583db2c 100644 --- a/tests/export-graph.nix +++ b/tests/export-graph.nix @@ -14,13 +14,13 @@ rec { done < refs ''; - runtimeGraph = mkDerivation { + foo."bar.runtimeGraph" = mkDerivation { name = "dependencies"; builder = builtins.toFile "build-graph-builder" "${printRefs}"; exportReferencesGraph = ["refs" (import ./dependencies.nix)]; }; - buildGraph = mkDerivation { + foo."bar.buildGraph" = mkDerivation { name = "dependencies"; builder = builtins.toFile "build-graph-builder" "${printRefs}"; exportReferencesGraph = ["refs" (import ./dependencies.nix).drvPath]; -- cgit 1.4.1