all repos — vite @ 4ca05429e8f957879142a9b73eaa8b0b60677105

a fast (this time, actually) and minimal static site generator

flake.nix (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
{
  description = "vite";

  outputs = { self, nixpkgs }: {
    devShell.x86_64-linux =
      let
        pkgs = nixpkgs.legacyPackages.x86_64-linux;
      in
      pkgs.mkShell {
        buildInputs = with pkgs; [
          go
          gotools
          gnumake
        ];
      };
  };
}