From 54419f301633f1622b966f75dd07dcce2076e569 Mon Sep 17 00:00:00 2001 From: Michael Fellinger Date: Tue, 27 Jun 2017 22:22:08 +0200 Subject: [PATCH] using inherited instead --- pkgs/build-support/docker/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/build-support/docker/default.nix b/pkgs/build-support/docker/default.nix index a3a4b605a6d..4ebe3c0615d 100644 --- a/pkgs/build-support/docker/default.nix +++ b/pkgs/build-support/docker/default.nix @@ -389,10 +389,9 @@ rec { # Create a JSON blob of the configuration. Set the date to unix zero. baseJson = writeText "${baseName}-config.json" (builtins.toJSON { - created = created; + inherit created config; architecture = "amd64"; os = "linux"; - config = config; }); layer =