summary refs log tree commit diff
path: root/doc/shell.nix
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2018-03-24 22:10:55 -0400
committerGraham Christensen <graham@grahamc.com>2018-03-25 19:52:08 -0400
commitf67ea4a6d0b14a61af3ccd98ef1a37ce870162e1 (patch)
tree1beca5e4d50e711797be4f19401e4a1b160a9356 /doc/shell.nix
parent7e25ff7106f00bdca9957b1109e2fd9beca86ea1 (diff)
downloadnixpkgs-f67ea4a6d0b14a61af3ccd98ef1a37ce870162e1.tar
nixpkgs-f67ea4a6d0b14a61af3ccd98ef1a37ce870162e1.tar.gz
nixpkgs-f67ea4a6d0b14a61af3ccd98ef1a37ce870162e1.tar.bz2
nixpkgs-f67ea4a6d0b14a61af3ccd98ef1a37ce870162e1.tar.lz
nixpkgs-f67ea4a6d0b14a61af3ccd98ef1a37ce870162e1.tar.xz
nixpkgs-f67ea4a6d0b14a61af3ccd98ef1a37ce870162e1.tar.zst
nixpkgs-f67ea4a6d0b14a61af3ccd98ef1a37ce870162e1.zip
Document shell.nix / xmloscopy / make for the nixpkgs docs
Diffstat (limited to 'doc/shell.nix')
-rw-r--r--doc/shell.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/shell.nix b/doc/shell.nix
new file mode 100644
index 00000000000..22590142ee1
--- /dev/null
+++ b/doc/shell.nix
@@ -0,0 +1,4 @@
+{ pkgs ? import ../. {} }:
+(import ./default.nix).overrideAttrs (x: {
+  buildInputs = x.buildInputs ++ [ pkgs.xmloscopy ];
+})