use callPackage for merge-after-ci, nix-unit & tea-create-pr

This commit is contained in:
lassulus
2023-08-03 18:04:03 +02:00
parent 6042d6eef5
commit d947c32a9b
5 changed files with 53 additions and 59 deletions

11
pkgs/flake-module.nix Normal file
View File

@@ -0,0 +1,11 @@
{ ... }: {
perSystem = { pkgs, config, ... }: {
packages = {
tea-create-pr = pkgs.callPackage ./tea-create-pr { };
merge-after-ci = pkgs.callPackage ./merge-after-ci {
inherit (config.packages) tea-create-pr;
};
nix-unit = pkgs.callPackage ./nix-unit { };
};
};
}