rustlanges-components 0.1.0

RustLangES components library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  inputs.nixpkgs.url = "github:nixos/nixpkgs";

  outputs = {nixpkgs, ...}: let
    system = "x86_64-linux";
    pkgs = import nixpkgs { inherit system; };
  in {
    devShells.${system}.default = pkgs.mkShell {
      buildInputs = with pkgs; [
        # js
        nodejs_22
        pnpm_10
      ];
    };
  };
}