0
0
Fork 0
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:
FliegendeWurst 2024-11-06 20:38:38 +01:00
parent 5f107ee86d
commit 5d5ea9bbde

View file

@ -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}