26 lines
382 B
Nix
26 lines
382 B
Nix
{
|
|
withSystem,
|
|
inputs,
|
|
...
|
|
}: {
|
|
perSystem = {
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
inputs',
|
|
...
|
|
}: {
|
|
devShells.markdown = pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
(python3.withPackages (ps:
|
|
with ps; [
|
|
mdformat
|
|
mdformat-gfm
|
|
mdformat-tables
|
|
mdformat-footnote
|
|
]))
|
|
];
|
|
};
|
|
};
|
|
}
|