query
On this page

extendDrvArgs

pkgs.appimageTools.wrapType2.constructDrv.extendDrvArgs

Docs pulled from | This Revision | 9 days ago


Contribute
Enhance the ecosystem with your expertise! Contribute to fill the gaps in documentation. Your input can make a difference.

Noogle detected

Aliases

Implementation

The following is the current implementation of this function.

finalAttrs:
      prev@{
        contents ? prev.src,
        extraPkgs ? pkgs: [ ],
        meta ? { },
        ...
      }:
      defaultFhsEnvArgs
      // {
        targetPkgs = pkgs: [ appimage-exec ] ++ defaultFhsEnvArgs.targetPkgs pkgs ++ extraPkgs pkgs;

        runScript = "appimage-exec.sh -w ${finalAttrs.contents or prev.src} --";

        meta = {
          sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
        }
        // meta;
      }