forked from mirrors/nixpkgs
20 lines
408 B
Bash
20 lines
408 B
Bash
|
#!/bin/sh -e
|
||
|
|
||
|
source "$stdenv/setup"
|
||
|
|
||
|
mkdir -p $out/share/GeoIP
|
||
|
cd $out/share/GeoIP
|
||
|
|
||
|
# Iterate over all environment variable names beginning with "src":
|
||
|
for var in "${!src@}"; do
|
||
|
# Store the value of the variable with name $var in $src:
|
||
|
eval src="\$$var"
|
||
|
|
||
|
# Copy $src to current directory, removing Nix hash from the filename:
|
||
|
dest="${src##*/}"
|
||
|
dest="${dest#*-}"
|
||
|
cp "$src" "$dest"
|
||
|
done
|
||
|
|
||
|
gunzip -v *.gz
|