dev-templates/nickel/flake.nix
2022-08-20 15:54:34 +03:00

29 lines
544 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
{
devShell = pkgs.mkShell {
buildInputs = with pkgs; [ nickel ];
shellHook = ''
${pkgs.nickel}/bin/nickel --version
'';
};
});
}