mirror of
https://github.com/foo-dogsquared/nix-module-wrapper-manager-fds.git
synced 2025-01-31 04:58:17 +00:00
24 lines
551 B
Nix
24 lines
551 B
Nix
{ pkgs, lib, self }:
|
|
|
|
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,
|
|
modules ? [ ],
|
|
specialArgs ? { },
|
|
}:
|
|
pkgs.lib.evalModules {
|
|
modules = [ ../modules/wrapper-manager ] ++ modules;
|
|
specialArgs = specialArgs // {
|
|
inherit pkgs;
|
|
modulesPath = builtins.toString ../modules/wrapper-manager;
|
|
};
|
|
};
|
|
}
|