dream2nix/modules/flake-parts/apps.update-locks.nix
2023-07-19 15:53:03 +02:00

52 lines
816 B
Nix

# custom app to update the eval-cache of each exported package.
{
self,
lib,
inputs,
...
}: {
imports = [
./writers.nix
];
perSystem = {
config,
self',
inputs',
pkgs,
system,
...
}: let
l = lib // builtins;
scripts =
l.flatten
(l.mapAttrsToList
(name: pkg: pkg.config.lock.refresh or [])
self'.packages);
update-locks =
config.writers.writePureShellScript
(with pkgs; [
coreutils
git
nix
])
(
"set -x\n"
+ (l.concatStringsSep "/bin/refresh\n" scripts)
+ "/bin/refresh"
);
toApp = script: {
type = "app";
program = "${script}";
};
in {
apps = l.mapAttrs (_: toApp) {
inherit
update-locks
;
};
};
}