1
1
mirror of https://github.com/divnix/digga.git synced 2024-08-15 18:10:24 +03:00

bump fup + fup fixes

This commit is contained in:
David Arnold 2021-09-05 16:00:30 -05:00 committed by Parthiv Seetharaman
parent 6267d6abf9
commit 3585c75eac
3 changed files with 7 additions and 7 deletions

View File

@ -69,9 +69,9 @@ rec {
lib.exporters.internalOverlays -> lib.exportOverlays
''
{
modulesFromList = flake-utils-plus.exportModules;
fromOverlays = flake-utils-plus.exportPackages;
internalOverlays = flake-utils-plus.exportOverlays;
modulesFromList = flake-utils-plus.lib.exportModules;
fromOverlays = flake-utils-plus.lib.exportPackages;
internalOverlays = flake-utils-plus.lib.exportOverlays;
}
;

View File

@ -93,11 +93,11 @@
]
},
"locked": {
"lastModified": 1630831608,
"narHash": "sha256-UyIQMX8abgByw8Q+gL69uKmAcOlMUwDZgVRG+UEFseo=",
"lastModified": 1630859903,
"narHash": "sha256-gQ2SQZb9GKM7t+D7GIODsfg6lxhEDy0dM+GPqz5t4o0=",
"owner": "divnix",
"repo": "flake-utils-plus",
"rev": "48e2161596296273c4ba221a07962f5451822f39",
"rev": "ed14e98f77d9c1eb75f2aa86c4f29a284513b7be",
"type": "github"
},
"original": {

View File

@ -88,7 +88,7 @@ let
devshellModules = flake-utils-plus.lib.exportModules config.devshell.modules;
overlays = flake-utils-plus.lib.exporters.internalOverlays {
overlays = flake-utils-plus.lib.exportOverlays {
# since we can't detect overlays owned by self
# we have to filter out ones exported by the inputs
# optimally we would want a solution for NixOS/nix#4740