mirror of
https://codeberg.org/mhwombat/nix-book.git
synced 2025-12-27 00:34:58 +08:00
9 lines
211 B
Nix
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
|
|
];
|
|
}
|