1
1
Fork 0
mirror of https://github.com/the-nix-way/dev-templates synced 2024-06-04 00:16:28 +02:00
github.com_the-nix-way_dev-.../protobuf/flake.nix
2022-10-12 16:42:34 -05:00

29 lines
614 B
Nix

{
description = "A Nix-flake-based Protobuf development environment";
inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:NixOS/nixpkgs";
};
outputs =
{ self
, flake-utils
, nixpkgs
}:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [ buf protobuf ];
shellHook = with pkgs; ''
echo "buf `${buf}/bin/buf --version`"
${protobuf}/bin/protoc --version
'';
};
});
}