lol

appimageTools.extract: add postExtract option (#261190)

authored by

Gabriel Volpe and committed by
GitHub
4a2788ea 2bbf67d3

+2 -1
+2 -1
pkgs/build-support/appimage/default.nix
··· 26 26 ]; 27 27 }; 28 28 29 - extract = args@{ name ? "${args.pname}-${args.version}", src, ... }: pkgs.runCommand "${name}-extracted" { 29 + extract = args@{ name ? "${args.pname}-${args.version}", postExtract ? "", src, ... }: pkgs.runCommand "${name}-extracted" { 30 30 buildInputs = [ appimage-exec ]; 31 31 } '' 32 32 appimage-exec.sh -x $out ${src} 33 + ${postExtract} 33 34 ''; 34 35 35 36 # for compatibility, deprecated