brutcss/flake.nix

20 lines
449 B
Nix
Raw Normal View History

2022-09-25 10:55:47 +00:00
{
2022-09-25 14:59:23 +00:00
description = "BrutCSS";
2022-09-25 10:55:47 +00:00
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"
'';
};
}
);
}