extractType1
pkgs.appimageTools.extractType1
Docs pulled from | This Revision | 3 days ago
Contribute
Enhance the ecosystem with your expertise! Contribute to fill the gaps in documentation. Your input can make a difference.
Noogle detected
Implementation
The following is the current implementation of this function.
args@{
pname,
version,
name ? null,
postExtract ? "",
src,
...
}:
assert lib.assertMsg (
name == null
) "The `name` argument is deprecated. Use `pname` and `version` instead to construct the name.";
pkgs.runCommand "${pname}-${version}-extracted"
{
nativeBuildInputs = [ appimage-exec ];
strictDeps = true;
}
''
appimage-exec.sh -x $out ${src}
${postExtract}
''