about summary refs log tree commit diff
path: root/nix/flake/packages.nix
blob: 16c5ec47f0671ed134d9e4d80f6682c981e580c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ inputs, self, ... }: {
  imports = [
    inputs.flake-parts.flakeModules.easyOverlay
  ];

  perSystem = { pkgs, ... }: {
    packages = {
      git-blame-stats = pkgs.callPackage "${self}/packages/git-blame-stats" { };
      git-broom = pkgs.callPackage "${self}/packages/git-broom" { };
    };
  };
}