Document shell.nix / xmloscopy / make for the nixpkgs docs

This commit is contained in:
Graham Christensen 2018-03-24 22:10:55 -04:00
parent 7e25ff7106
commit f67ea4a6d0
No known key found for this signature in database
GPG key ID: ACA1C1D120C83D5C
2 changed files with 24 additions and 4 deletions

4
doc/shell.nix Normal file
View file

@ -0,0 +1,4 @@
{ pkgs ? import ../. {} }:
(import ./default.nix).overrideAttrs (x: {
buildInputs = x.buildInputs ++ [ pkgs.xmloscopy ];
})