brutcss/shell.nix
Yann Esposito (Yogsototh) 9b7338fe5d
clean trailing whitespaces
2024-07-26 00:51:37 +02:00

14 lines
209 B
Nix

{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
buildInputs = [
lessc
minify
babashka
html-tidy
html-xml-utils
];
shellHook = ''
echo "shell with lessc and minify"
'';
}