dev-templates/protobuf/flake.nix

28 lines
675 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
2022-08-20 12:06:53 +02:00
outputs = { self, flake-utils, nixpkgs }:
flake-utils.lib.eachDefaultSystem (system:
2022-07-29 02:49:09 +02:00
let
pkgs = import nixpkgs { inherit system; };
2022-07-31 21:01:58 +02:00
inherit (pkgs) buf mkShell protobuf;
2022-08-20 13:47:43 +02:00
in
{
2022-07-29 02:49:09 +02:00
devShells = {
2022-07-31 21:01:58 +02:00
default = mkShell {
2022-07-29 02:49:09 +02:00
buildInputs = [ buf protobuf ];
shellHook = ''
echo "buf `${buf}/bin/buf --version`"
${protobuf}/bin/protoc --version
'';
};
};
});
}