dev-templates/protobuf/flake.nix

25 lines
652 B
Nix
Raw Normal View History

2022-07-29 02:49:09 +02:00
{
description = "A Nix-flake-based Protobuf development environment";
2022-07-31 13:02:06 +02:00
inputs = { dev.url = "github:the-nix-way/dev-templates"; };
2022-07-29 02:49:09 +02:00
2022-07-31 12:57:49 +02:00
outputs = { self, dev }:
2022-07-31 13:02:06 +02:00
let inherit (dev.lib) flake-utils nixpkgs;
2022-07-31 12:57:49 +02:00
in 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-07-29 02:49:09 +02:00
in {
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
'';
};
};
});
}