File tree 2 files changed +11
-4
lines changed
2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 52
52
echo "file binary-dist $out/${ tarball-filename } " >> $out/nix-support/hydra-build-products
53
53
'' ;
54
54
55
- in
56
- {
57
-
58
55
static-nix-tools-outputs = import ./static/outputs.nix inputs ;
56
+
57
+ in {
58
+
59
+ inherit static-nix-tools-outputs ;
59
60
60
61
# this is not per-system!
61
62
overlays . default = import ./overlay.nix ;
92
93
# aarch64-multiplatform-musl cross compile is currently broken
93
94
# // lib.optionalAttrs (pkgs.buildPlatform.system == "aarch64-linux")
94
95
# { binary-tarball = mkTarball pkgs.pkgsCross.aarch64-multiplatform-musl; }
96
+ // {
97
+ static = static-nix-tools-outputs . hydraJobs . ${ pkgs . system } ;
98
+ }
95
99
) ;
96
100
} ;
97
101
Original file line number Diff line number Diff line change 66
66
67
67
68
68
outputs = {
69
- zipped = forAllSystems ( import ./zipped.nix inputs ) ;
69
+ hydraJobs = forAllSystems ( pkgs : {
70
+ zipped = import ./zipped.nix inputs pkgs ;
71
+ flake = ( import ./project.nix inputs pkgs ) . flake' . hydraJobs ;
72
+ } ) ;
70
73
} ;
71
74
72
75
in
You can’t perform that action at this time.
0 commit comments