diff options
author | Franck Cuny <franck@fcuny.net> | 2022-06-18 14:35:19 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-06-18 14:38:25 -0700 |
commit | 65dbc275a2a671658ae9aaa805de90af0497e9af (patch) | |
tree | 8d5b871c4907be2d3dac5c4b3e63c64bb7b60cec | |
parent | feat(tools/git-blame-stats): add a CLI to report git blame statistics (diff) | |
download | world-65dbc275a2a671658ae9aaa805de90af0497e9af.tar.gz |
feat(tools/git-blame-stats): add the tool to nix configuration
Change-Id: Iea045c74a32dc26b9a39da79f49308a85ec237cc Reviewed-on: https://cl.fcuny.net/c/world/+/446 Tested-by: CI Reviewed-by: Franck Cuny <franck@fcuny.net>
-rw-r--r-- | flake.nix | 1 | ||||
-rw-r--r-- | nix/mkSystem.nix | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix index 1431c28..c92ac52 100644 --- a/flake.nix +++ b/flake.nix @@ -52,6 +52,7 @@ dnsupdate = import ./tools/dnsupdate { inherit pkgs; }; govanity = import ./tools/govanity { inherit pkgs; }; ipconverter = import ./tools/ipconverter { inherit pkgs; }; + git-blame-stats = import ./tools/git-blame-stats { inherit pkgs; }; }; users.fcuny = { diff --git a/nix/mkSystem.nix b/nix/mkSystem.nix index eddc813..d019e28 100644 --- a/nix/mkSystem.nix +++ b/nix/mkSystem.nix @@ -18,6 +18,7 @@ inputs.nixpkgs.lib.nixosSystem { tools = { gerrit-hook = import ../tools/gerrit-hook final; ipconverter = import ../tools/ipconverter final; + git-blame-stats = import ../tools/git-blame-stats final; }; }) ]; |