nix-book/shell.nix
2023-06-13 21:14:26 +01:00

9 lines
211 B
Nix

with (import <nixpkgs> {});
mkShell {
buildInputs = [
asciidoctor
# python311Packages.pygments don't need to install, asciidoctor includes it
# rubyPackages.coderay
# rubyPackages.rouge
];
}