* use lix from nixpkgs * install nil * just don't use matrix anymore * try not using lix * use nixpkgs unstable * dogfood nixcp * workflow: use runner.temp variable * workflow: try hex encoded secret * workflow: use envars for s3 region and endpoint * rm matrix * workflow: trace nixcp * workflow: no lix and no checkout in build packages * Revert "workflow: trace nixcp" This reverts commit 16d0827bcb90bff73a072920eb83f97aa84394ce.
18 lines
385 B
Nix
18 lines
385 B
Nix
{ inputs }:
|
|
[
|
|
(
|
|
final: prev:
|
|
let
|
|
nixpkgsFrom = flake: pkg: flake.legacyPackages.${prev.system}.${pkg};
|
|
pkgFrom = flake: pkg: flake.packages.${prev.system}.${pkg};
|
|
in
|
|
{
|
|
garage = (
|
|
(pkgFrom inputs.garage "default").overrideAttrs {
|
|
meta.mainProgram = "garage";
|
|
}
|
|
);
|
|
nil = pkgFrom inputs.nil "default";
|
|
}
|
|
)
|
|
]
|