14 lines
282 B
Nix
14 lines
282 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
# nativeBuildInputs is usually what you want -- tools you need to run
|
|
nativeBuildInputs = with pkgs.buildPackages; [
|
|
|
|
mmark
|
|
xml2rfc
|
|
python312Packages.lxml
|
|
wkhtmltopdf-bin
|
|
imagemagick
|
|
|
|
];
|
|
}
|