dev-templates/protobuf/flake.nix

29 lines
614 B
Nix
Raw Normal View History

2022-07-29 02:49:09 +02:00
{
description = "A Nix-flake-based Protobuf development environment";
2022-08-20 12:06:53 +02:00
inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:NixOS/nixpkgs";
};
2022-07-29 02:49:09 +02:00
outputs =
{ self
, flake-utils
, nixpkgs
}:
2022-08-20 12:06:53 +02:00
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
2022-10-12 23:42:34 +02:00
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [ buf protobuf ];
2022-07-29 02:49:09 +02:00
shellHook = with pkgs; ''
echo "buf `${buf}/bin/buf --version`"
${protobuf}/bin/protoc --version
'';
};
});
2022-07-29 02:49:09 +02:00
}