Fixup bumps

Signed-off-by: magic_rb <magic_rb@redalder.org>
This commit is contained in:
magic_rb 2024-05-14 22:37:39 +02:00
parent 326effe98c
commit 6b3fc977dc
No known key found for this signature in database
GPG key ID: 08D5287CC5DDCA0E

View file

@ -1,5 +1,19 @@
{inputs, ...}: {
overlays = inputs.haumea.lib.load {
{
inputs,
lib,
...
}: let
inherit
(lib)
mapAttrs'
nameValuePair
;
mapAttrNames = f: attrs: mapAttrs' (n: v: nameValuePair (f n) v) attrs;
in {
flake.overlays = mapAttrNames (n: "bumps-" + n) (inputs.haumea.lib.load {
src = ./bumps;
};
inputs = {
inherit inputs;
};
});
}