generated from Luis/nextjs-python-web-template
12 lines
308 B
Nix
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 { };
|
|
};
|
|
};
|
|
}
|