Merge pull request #128927 from andersk/appimage

appimageTools.wrapAppImage: Fix passing arguments to wrapped executable
wip/nixpkgs-raku
Jörg Thalheim 3 years ago committed by GitHub
commit 436c1a938e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      pkgs/build-support/appimage/default.nix

@ -45,7 +45,7 @@ rec {
targetPkgs = pkgs: [ appimage-exec ]
++ defaultFhsEnvArgs.targetPkgs pkgs ++ extraPkgs pkgs;
runScript = "appimage-exec.sh -w ${src}";
runScript = "appimage-exec.sh -w ${src} --";
} // (removeAttrs args (builtins.attrNames (builtins.functionArgs wrapAppImage))));
wrapType2 = args@{ name, src, extraPkgs ? pkgs: [ ], ... }: wrapAppImage

Loading…
Cancel
Save