forked from mirrors/nixpkgs
appimage: refactoring extractType2 to avoid use of appimage packer
This commit is contained in:
parent
619a095af0
commit
ebaedb5377
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, libarchive, patchelf, zlib, buildFHSUserEnv, writeScript }:
|
{ stdenv, libarchive, radare2, jq, buildFHSUserEnv, squashfsTools, writeScript }:
|
||||||
|
|
||||||
rec {
|
rec {
|
||||||
# Both extraction functions could be unified, but then
|
# Both extraction functions could be unified, but then
|
||||||
|
@ -19,15 +19,16 @@ rec {
|
||||||
name = "${name}-extracted";
|
name = "${name}-extracted";
|
||||||
inherit src;
|
inherit src;
|
||||||
|
|
||||||
nativeBuildInputs = [ patchelf ];
|
nativeBuildInputs = [ radare2 jq squashfsTools ];
|
||||||
buildCommand = ''
|
buildCommand = ''
|
||||||
install $src ./appimage
|
install $src ./appimage
|
||||||
patchelf \
|
|
||||||
--set-interpreter ${stdenv.cc.bintools.dynamicLinker} \
|
|
||||||
--replace-needed libz.so.1 ${zlib}/lib/libz.so.1 \
|
|
||||||
./appimage
|
|
||||||
|
|
||||||
./appimage --appimage-extract
|
# multiarch offset one-liner using same method as AppImage
|
||||||
|
# see https://gist.github.com/probonopd/a490ba3401b5ef7b881d5e603fa20c93
|
||||||
|
offset=$(r2 ./appimage -nn -Nqc "pfj.elf_header @ 0" |\
|
||||||
|
jq 'map({(.name): .value}) | add | .shoff + (.shnum * .shentsize)')
|
||||||
|
|
||||||
|
unsquashfs -o $offset ./appimage
|
||||||
|
|
||||||
cp -rv squashfs-root $out
|
cp -rv squashfs-root $out
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue