brutcss/shell.nix
Yann Esposito (Yogsototh) 19bfebecb9
use babashka
2022-10-03 16:53:52 +02:00

13 lines
180 B
Nix

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