From 94f850c3d1dc08fac3addad38573c422594dab59 Mon Sep 17 00:00:00 2001 From: greizgh Date: Tue, 19 Jan 2021 18:46:51 +0100 Subject: [PATCH] doc: fix shell.nix (#109816) --- doc/shell.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/doc/shell.nix b/doc/shell.nix index 8ac2019f9d6..5fa2b442489 100644 --- a/doc/shell.nix +++ b/doc/shell.nix @@ -1,5 +1,3 @@ -{ pkgs ? import ../. {} }: -(import ./default.nix {}).overrideAttrs (x: { - buildInputs = x.buildInputs ++ [ pkgs.xmloscopy pkgs.ruby ]; - -}) +{ pkgs ? import ../. { } }: +(import ./default.nix { }).overrideAttrs +(x: { buildInputs = (x.buildInputs or [ ]) ++ [ pkgs.xmloscopy pkgs.ruby ]; })