brutcss/shell.nix

15 lines
209 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
2024-07-25 22:51:37 +00:00
buildInputs = [
lessc
minify
2022-10-03 14:53:52 +00:00
babashka
2022-10-09 21:12:58 +00:00
html-tidy
2022-10-10 11:51:07 +00:00
html-xml-utils
];
2024-07-25 22:51:37 +00:00
shellHook = ''
echo "shell with lessc and minify"
'';
}