32 lines
587 B
Nix
32 lines
587 B
Nix
|
{
|
||
|
inputs = {
|
||
|
nixpkgs.url = "nixpkgs/nixpkgs-unstable";
|
||
|
};
|
||
|
|
||
|
outputs = { nixpkgs, ... }:
|
||
|
let
|
||
|
system = "x86_64-linux";
|
||
|
|
||
|
pkgs = import nixpkgs { inherit system; };
|
||
|
in
|
||
|
{
|
||
|
devShell.${system} = pkgs.mkShell {
|
||
|
name = "zen-shell";
|
||
|
buildInputs = with pkgs; [
|
||
|
go
|
||
|
nodePackages_latest.nodejs
|
||
|
goose
|
||
|
air
|
||
|
upx
|
||
|
buf
|
||
|
buf-language-server
|
||
|
protoc-gen-go
|
||
|
protoc-gen-connect-go
|
||
|
protoc-gen-validate
|
||
|
air
|
||
|
gopls
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|