Rename myWrappers to wrappers

This commit is contained in:
SebastianStork 2024-05-09 23:39:59 +02:00
parent 0624562069
commit 08dae72f8d
3 changed files with 11 additions and 11 deletions

View file

@ -14,7 +14,7 @@
.wrappedPackage
.wrapped;
in {
_module.args.myWrappers = lib.pipe (builtins.readDir ./.) [
_module.args.wrappers = lib.pipe (builtins.readDir ./.) [
(lib.filterAttrs (name: value: name != "default.nix"))
(lib.concatMapAttrs (name: _: {${lib.removeSuffix ".nix" name} = import ./${name} {inherit assembleWrapper pkgs lib;};}))
];