9 lines
137 B
Nix
9 lines
137 B
Nix
let
|
|
pkgs = import ../../.. { };
|
|
in
|
|
pkgs.mkShell {
|
|
name = "nixos-manual";
|
|
|
|
buildInputs = with pkgs; [ xmlformat jing xmloscopy ];
|
|
}
|