https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
5 lines
114 B
Bash
5 lines
114 B
Bash
unpackCmdHooks+=(_try7zip)
|
|
_try7zip() {
|
|
if ! [[ "$curSrc" =~ \.7z$ ]]; then return 1; fi
|
|
7z x "$curSrc"
|
|
}
|