mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-15 08:34:04 +00:00
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 ];
|
|
}
|