brutcss/flake.nix

14 lines
320 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 = import ./shell.nix {inherit pkgs; };
2022-09-25 10:55:47 +00:00
}
);
}