9 lines
175 B
Nix
9 lines
175 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell{
|
|
nativeBuildInputs = with pkgs; [
|
|
python310Packages.mkdocs
|
|
python310Packages.mkdocs-minify
|
|
rubyPackages.haml
|
|
];
|
|
}
|