mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
8 lines
137 B
Nix
8 lines
137 B
Nix
let
|
|
pkgs = import ../../.. { };
|
|
in
|
|
pkgs.mkShell {
|
|
name = "nixos-manual";
|
|
|
|
buildInputs = with pkgs; [ xmlformat jing xmloscopy ];
|
|
}
|