Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2230b07393b3
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 406e9d25b5fc
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on May 11, 2018

  1. Copy the full SHA
    d12afa6 View commit details
  2. Merge pull request #40278 from markus1189/googleearth

    googleearth: init at 7.1.8.3036
    FRidh authored May 11, 2018
    Copy the full SHA
    406e9d2 View commit details
Showing with 99 additions and 6 deletions.
  1. +0 −6 nixos/doc/manual/release-notes/rl-1809.xml
  2. +97 −0 pkgs/applications/misc/googleearth/default.nix
  3. +2 −0 pkgs/top-level/all-packages.nix
6 changes: 0 additions & 6 deletions nixos/doc/manual/release-notes/rl-1809.xml
Original file line number Diff line number Diff line change
@@ -101,12 +101,6 @@ $ nix-instantiate -E '(import <nixpkgsunstable> {}).gitFull'
that can be mapped onto the YAML configuration defined in <link xlink:href="https://github.com/docker/distribution/blob/v2.6.2/docs/configuration.md">the <varname>docker/distribution</varname> docs</link>.
</para>
</listitem>
<listitem>
<para>
<literal>googleearth</literal> has been removed from Nixpkgs. Google does not provide
a stable URL for Nixpkgs to use to package this proprietary software.
</para>
</listitem>
<listitem>
<para>
<literal>gnucash</literal> has changed from version 2.4 to 3.x.
97 changes: 97 additions & 0 deletions pkgs/applications/misc/googleearth/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
{ stdenv, fetchurl, glibc, libGLU_combined, freetype, glib, libSM, libICE, libXi, libXv
, libXrender, libXrandr, libXfixes, libXcursor, libXinerama, libXext, libX11, qt4
, zlib, fontconfig, dpkg, libproxy, libxml2, gstreamer, gst_all_1, dbus }:

let
arch =
if stdenv.system == "x86_64-linux" then "amd64"
else if stdenv.system == "i686-linux" then "i386"
else throw "Unsupported system ${stdenv.system}";
sha256 =
if arch == "amd64"
then "0dwnppn5snl5bwkdrgj4cyylnhngi0g66fn2k41j3dvis83x24k6"
else "0gndbxrj3kgc2dhjqwjifr3cl85hgpm695z0wi01wvwzhrjqs0l2";
version = "7.1.8.3036";
fullPath = stdenv.lib.makeLibraryPath [
glibc
glib
stdenv.cc.cc
libSM
libICE
libXi
libXv
libGLU_combined
libXrender
libXrandr
libXfixes
libXcursor
libXinerama
freetype
libXext
libX11
zlib
fontconfig
libproxy
libxml2
gstreamer
dbus
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
];
in
stdenv.mkDerivation rec {
name = "googleearth-${version}";
src = fetchurl {
url = "https://dl.google.com/linux/earth/deb/pool/main/g/google-earth-stable/google-earth-stable_${version}-r0_${arch}.deb";
inherit sha256;
};

phases = [ "unpackPhase" "installPhase" "checkPhase" ];

doCheck = true;

buildInputs = [ dpkg ];

unpackPhase = ''
dpkg-deb -x ${src} ./
'';

installPhase =''
mkdir $out
mv usr/* $out/
rmdir usr
mv * $out/
rm $out/bin/google-earth $out/opt/google/earth/free/googleearth
# patch and link googleearth binary
ln -s $out/opt/google/earth/free/googleearth-bin $out/bin/googleearth
patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
--set-rpath "${fullPath}:\$ORIGIN" \
$out/opt/google/earth/free/googleearth-bin
# patch and link gpsbabel binary
ln -s $out/opt/google/earth/free/gpsbabel $out/bin/gpsbabel
patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
--set-rpath "${fullPath}:\$ORIGIN" \
$out/opt/google/earth/free/gpsbabel
# patch libraries
for a in $out/opt/google/earth/free/*.so* ; do
patchelf --set-rpath "${fullPath}:\$ORIGIN" $a
done
'';

checkPhase = ''
$out/bin/gpsbabel -V > /dev/null
'';

dontPatchELF = true;

meta = with stdenv.lib; {
description = "A world sphere viewer";
homepage = http://earth.google.com;
license = licenses.unfree;
maintainers = with maintainers; [ markus1189 ];
platforms = platforms.linux;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -16181,6 +16181,8 @@ with pkgs;

gollum = callPackage ../applications/misc/gollum { };

googleearth = callPackage ../applications/misc/googleearth { };

google-chrome = callPackage ../applications/networking/browsers/google-chrome { gconf = gnome2.GConf; };

google-chrome-beta = google-chrome.override { chromium = chromiumBeta; channel = "beta"; };