mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
6 lines
114 B
Bash
6 lines
114 B
Bash
unpackCmdHooks+=(_try7zip)
|
|
_try7zip() {
|
|
if ! [[ "$curSrc" =~ \.7z$ ]]; then return 1; fi
|
|
7z x "$curSrc"
|
|
}
|