summary refs log tree commit diff
path: root/pkgs/build-support
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2021-07-21 07:40:30 +0100
committerGitHub <noreply@github.com>2021-07-21 07:40:30 +0100
commit436c1a938eddd62b498e0cb436ba79c7516ccc47 (patch)
tree6daa587b91668dd3b53fd6fb67250175a53062f2 /pkgs/build-support
parent4a338e3317cfeab9c0e4281d6f319c44435ec766 (diff)
parentb5160bba86e7a47573dde96c779dffa0526d9858 (diff)
downloadnixpkgs-436c1a938eddd62b498e0cb436ba79c7516ccc47.tar
nixpkgs-436c1a938eddd62b498e0cb436ba79c7516ccc47.tar.gz
nixpkgs-436c1a938eddd62b498e0cb436ba79c7516ccc47.tar.bz2
nixpkgs-436c1a938eddd62b498e0cb436ba79c7516ccc47.tar.lz
nixpkgs-436c1a938eddd62b498e0cb436ba79c7516ccc47.tar.xz
nixpkgs-436c1a938eddd62b498e0cb436ba79c7516ccc47.tar.zst
nixpkgs-436c1a938eddd62b498e0cb436ba79c7516ccc47.zip
Merge pull request #128927 from andersk/appimage
appimageTools.wrapAppImage: Fix passing arguments to wrapped executable
Diffstat (limited to 'pkgs/build-support')
-rw-r--r--pkgs/build-support/appimage/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/build-support/appimage/default.nix b/pkgs/build-support/appimage/default.nix
index 6ba5890885d..a759726eb10 100644
--- a/pkgs/build-support/appimage/default.nix
+++ b/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