mirror of
https://github.com/foo-dogsquared/nix-module-wrapper-manager-fds.git
synced 2025-01-31 04:58:17 +00:00
Gabriel Arazas
62cc18faf5
Now we set `pkgs` modularly allowing users to set their own nixpkgs instance for whatever reason. Also, we removed `modulesPath` since it is pointless and I would like to keep wrapper-manager-fds to be pretty simple to maintain at its core.
29 lines
735 B
Nix
29 lines
735 B
Nix
rec {
|
|
/* Given the attrset for evaluating a wrapper-manager module, return a
|
|
derivation containing the wrapper.
|
|
*/
|
|
build = args:
|
|
(eval args).config.build.toplevel;
|
|
|
|
/* Evaluate a wrapper-manager configuration. */
|
|
eval = {
|
|
pkgs,
|
|
lib ? pkgs.lib,
|
|
modules ? [ ],
|
|
specialArgs ? { },
|
|
}:
|
|
lib.evalModules {
|
|
inherit specialArgs;
|
|
modules = [
|
|
../modules/wrapper-manager
|
|
|
|
# Setting pkgs modularly. This would make setting up wrapper-manager
|
|
# with different nixpkgs instances possible but it isn't something that
|
|
# is explicitly supported.
|
|
({ lib, ... }: {
|
|
config._module.args.pkgs = lib.mkDefault pkgs;
|
|
})
|
|
] ++ modules;
|
|
};
|
|
}
|