mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
12 lines
219 B
Bash
12 lines
219 B
Bash
|
unpackPhase="unpackGog"
|
||
|
|
||
|
unpackGog() {
|
||
|
runHook preUnpackGog
|
||
|
|
||
|
innoextract --silent --extract --exclude-temp "${src}"
|
||
|
|
||
|
find . -depth -print -execdir rename -f 'y/A-Z/a-z/' '{}' \;
|
||
|
|
||
|
runHook postUnpackGog
|
||
|
}
|