summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorgreizgh <greizgh@ephax.org>2021-01-19 18:46:51 +0100
committerGitHub <noreply@github.com>2021-01-19 12:46:51 -0500
commit94f850c3d1dc08fac3addad38573c422594dab59 (patch)
tree9aa1bfb7c12143111336e43cb3cda0e4aa043cec /doc
parentc030d1b85bbcc2772ea432b713d699710c8b537e (diff)
doc: fix shell.nix (#109816)
Diffstat (limited to 'doc')
-rw-r--r--doc/shell.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/doc/shell.nix b/doc/shell.nix
index 8ac2019f9d66..5fa2b4424899 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 ]; })