ci: I have forgotten what burning smells like, this is fine

This commit is contained in:
kat witch 2021-05-19 13:03:54 +01:00
parent 8fbbb6dad1
commit 1bec30d6a7
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
2 changed files with 6 additions and 6 deletions

View file

@ -19,7 +19,8 @@ rec {
runners = import ./runners.nix { inherit lib; inherit (deploy) target; };
sourceCache = lib.mapAttrsToList(sourceName: value: if lib.isDerivation value.outPath then value.outPath else value) (removeAttrs (import sources.nix-hexchen {}).sources [ "__functor" ]);
getSources = sources: lib.attrValues (lib.removeAttrs sources [ "__functor" ]);
sourceCache = map(value: if lib.isDerivation value.outPath then value.outPath else value) (getSources sources ++ getSources (import sources.nix-hexchen {}).sources);
deploy = import ./lib/deploy.nix {
inherit pkgs sources;