mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 14:10:33 +03:00
appimageTools.extract: fix build with strictDeps = true
This commit is contained in:
parent
5f107ee86d
commit
5d5ea9bbde
1 changed files with 2 additions and 1 deletions
|
@ -27,7 +27,8 @@ rec {
|
|||
};
|
||||
|
||||
extract = args@{ name ? "${args.pname}-${args.version}", postExtract ? "", src, ... }: pkgs.runCommand "${name}-extracted" {
|
||||
buildInputs = [ appimage-exec ];
|
||||
nativeBuildInputs = [ appimage-exec ];
|
||||
strictDeps = true;
|
||||
} ''
|
||||
appimage-exec.sh -x $out ${src}
|
||||
${postExtract}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue