brutcss/shell.nix
2022-09-26 14:10:24 +02:00

12 lines
167 B
Nix

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