61d2d2d503
Create the pipeline by outputting a file that contains nix-build invocations for each target's *derivation path*. Each invocation has a generated Nix expression passed to it with `-E` which fetches the correct target from the tree while correctly handling targets with strange characters (such as in Go-packages). This makes it possible to run target-level granular pipelines. We're getting somewhere! Change-Id: Ia6946e389dafd1d4926130bb8891446d6e17133b Reviewed-on: https://cl.tvl.fyi/c/depot/+/1855 Tested-by: BuildkiteCI Reviewed-by: glittershark <grfn@gws.fyi> Reviewed-by: lukegb <lukegb@tvl.fyi>
26 lines
653 B
Nix
26 lines
653 B
Nix
{ pkgs, depot, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
rec {
|
|
nixpkgs = import pkgs.nixpkgsSrc {};
|
|
|
|
home-manager = (fetchTarball {
|
|
url = "https://github.com/rycee/home-manager/archive/152769aed96d4d6f005ab40daf03ec4f5102c763.tar.gz";
|
|
sha256 = "10svwspmsf46rijzsh0h9nmz1mq2998wcml8yp36mwksgi8695pc";
|
|
});
|
|
|
|
home = confPath: (import "${home-manager}/modules" {
|
|
pkgs = nixpkgs;
|
|
configuration = { config, lib, ... }: {
|
|
imports = [confPath];
|
|
|
|
_module.args.pkgs = mkForce
|
|
(import pkgs.nixpkgsSrc (filterAttrs (n: v: v != null) config.nixpkgs));
|
|
|
|
lib.depot = depot;
|
|
};
|
|
});
|
|
|
|
chupacabra = home ./machines/chupacabra.nix;
|
|
}
|