mirror of
https://codeberg.org/mhwombat/nix-book.git
synced 2025-12-27 08:44:56 +08:00
7 lines
110 B
Nix
7 lines
110 B
Nix
with (import <nixpkgs> {});
|
|
mkShell {
|
|
buildInputs = [
|
|
asciidoctor
|
|
python311Packages.pygments
|
|
];
|
|
}
|