brutcss/flake.nix
Yann Esposito (Yogsototh) 697a391f06
rename
2022-09-25 16:59:23 +02:00

20 lines
449 B
Nix

{
description = "BrutCSS";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system}; in
rec {
devShell = pkgs.mkShell {
buildInputs = with pkgs; [ lessc minify ];
shellHook = ''
echo "shell with lessc and minify"
'';
};
}
);
}