tasiaiso.vulpecula.zone/shell.nix

15 lines
408 B
Nix
Raw Normal View History

2024-05-06 13:17:00 +02:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell{
nativeBuildInputs = with pkgs; [
2024-05-26 23:31:33 +02:00
nodejs_20 # EOL: 2026-04
python310 # EOL: 2026
2024-05-06 13:17:00 +02:00
python310Packages.mkdocs
python310Packages.mkdocs-minify
2024-05-26 23:31:33 +02:00
python310Packages.csscompressor
2024-05-30 09:57:46 +02:00
python310Packages.htmlmin # htmlmin --keep-optional-attribute-quotes theme/favicon.svg theme/favicon.min.svg
2024-05-26 20:10:32 +02:00
rubyPackages.haml
2024-05-30 09:57:46 +02:00
inkscape
imagemagick
2024-05-06 13:17:00 +02:00
];
}