nixpkgs/pkgs/applications/misc/googleearth/default.nix
Lluís Batlle i Rossell 17e7e8be97 Marking google earth as i686-linux only.
svn path=/nixpkgs/trunk/; revision=15051
2009-04-15 09:09:45 +00:00

73 lines
1.8 KiB
Nix

{ stdenv, fetchurl, glibc, mesa, freetype, glib, libSM, libICE, libXi, libXv,
libXrender, libXrandr, libXfixes, libXcursor, libXinerama, libXext, libX11 }:
/* I haven't found any x86_64 package from them */
assert stdenv.system == "i686-linux";
stdenv.mkDerivation {
name = "googleearth-5.11337.1968";
src = fetchurl {
url = http://dl.google.com/earth/client/current/GoogleEarthLinux.bin;
sha256 = "1h090rbdkp3pa97xkkjzj71k343ic8dlngj2cihw5cd1hh3f9idc";
};
buildInputs = [
glibc
glib
stdenv.gcc.gcc
libSM
libICE
libXi
libXv
mesa
libXrender
libXrandr
libXfixes
libXcursor
libXinerama
freetype
libXext
libX11
];
phases = "unpackPhase installPhase";
unpackPhase = ''
bash $src --noexec --target unpacked
cd unpacked
'';
installPhase =''
ensureDir $out/{opt/googleearth/,bin};
tar xf googleearth-data.tar -C $out/opt/googleearth
tar xf googleearth-linux-x86.tar -C $out/opt/googleearth
rm $out/opt/googleearth/libstdc+*
rm $out/opt/googleearth/libgcc*
cp bin/googleearth $out/opt/googleearth
cat > $out/bin/googleearth << EOF
#!/bin/sh
export GOOGLEEARTH_DATA_PATH=$out/opt/googleearth
exec $out/opt/googleearth/googleearth
EOF
chmod +x $out/bin/googleearth
fullPath=
for i in $buildInputs; do
fullPath=$fullPath:$i/lib
done
patchelf --interpreter "$(cat $NIX_GCC/nix-support/dynamic-linker)" \
--set-rpath $fullPath \
$out/opt/googleearth/googleearth-bin
for a in $out/opt/googleearth/*.so* ; do
patchelf --set-rpath $fullPath $a
done
'';
meta = {
description = "A world sphere viewer";
homepage = http://earth.google.com;
license = "Google";
};
}