clan-core/pkgs/flake-module.nix
lassulus d947c32a9b
All checks were successful
build / test (push) Successful in 9s
use callPackage for merge-after-ci, nix-unit & tea-create-pr
2023-08-03 18:05:53 +02:00

12 lines
308 B
Nix

{ ... }: {
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 { };
};
};
}