File tree Expand file tree Collapse file tree 5 files changed +23
-13
lines changed Expand file tree Collapse file tree 5 files changed +23
-13
lines changed Original file line number Diff line number Diff line change 31
31
./devShells/flake-module.nix
32
32
./nixosModules/flake-module.nix
33
33
./checks/flake-module.nix
34
+ ./packages/flake-module.nix
34
35
]
35
36
++ inputs . nixpkgs . lib . optional ( inputs . treefmt-nix ? flakeModule ) ./formatter/flake-module.nix
36
37
++ inputs . nixpkgs . lib . optionals ( inputs . hercules-ci-effects ? flakeModule ) [
75
76
perSystem =
76
77
{
77
78
self' ,
78
- pkgs ,
79
79
system ,
80
80
...
81
81
} :
82
82
{
83
- packages =
84
- {
85
- # useful for checking what buildbot version is used.
86
- buildbot = pkgs . buildbot ;
87
- buildbot-nix = pkgs . python3 . pkgs . callPackage ./nix/buildbot-nix.nix { } ;
88
- buildbot-gitea = pkgs . python3 . pkgs . callPackage ./nix/buildbot-gitea.nix {
89
- buildbot = pkgs . buildbot ;
90
- } ;
91
- }
92
- // lib . optionalAttrs pkgs . stdenv . isLinux {
93
- buildbot-effects = pkgs . python3 . pkgs . callPackage ./nix/buildbot-effects.nix { } ;
94
- } ;
95
83
checks =
96
84
let
97
85
nixosMachines = lib . mapAttrs' (
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ {
2
+ perSystem =
3
+ {
4
+ lib ,
5
+ pkgs ,
6
+ ...
7
+ } :
8
+ {
9
+ packages =
10
+ {
11
+ # useful for checking what buildbot version is used.
12
+ buildbot = pkgs . buildbot ;
13
+ buildbot-nix = pkgs . python3 . pkgs . callPackage ./buildbot-nix.nix { } ;
14
+ buildbot-gitea = pkgs . python3 . pkgs . callPackage ./buildbot-gitea.nix {
15
+ buildbot = pkgs . buildbot ;
16
+ } ;
17
+ }
18
+ // lib . optionalAttrs pkgs . stdenv . isLinux {
19
+ buildbot-effects = pkgs . python3 . pkgs . callPackage ./buildbot-effects.nix { } ;
20
+ } ;
21
+ } ;
22
+ }
You can’t perform that action at this time.
0 commit comments