2011-03-21 15:49:36 +01:00
|
|
|
{ GConf, alsaLib, bzip2, cairo, cups, dbus, dbus_glib, expat
|
|
|
|
, fetchurl, ffmpeg, fontconfig, freetype, gtkLibs, libX11
|
|
|
|
, libXScrnSaver, libXdamage, libXext, libXrender, libXt, libXtst
|
|
|
|
, libgcrypt, libjpeg, libpng, makeWrapper, nspr, nss, patchelf
|
|
|
|
, stdenv, unzip, zlib, pam }:
|
2009-10-30 09:45:58 +01:00
|
|
|
|
|
|
|
assert stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux" ;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2010-10-12 10:09:57 +02:00
|
|
|
name = "chrome-${version}";
|
2011-06-13 22:42:09 +02:00
|
|
|
version = "88807";
|
2010-11-28 10:27:45 +01:00
|
|
|
src =
|
|
|
|
if stdenv.system == "x86_64-linux" then
|
2009-10-30 09:45:58 +01:00
|
|
|
fetchurl {
|
2011-06-13 22:42:09 +02:00
|
|
|
url = "http://commondatastorage.googleapis.com/chromium-browser-continuous/Linux_x64/${version}/chrome-linux.zip";
|
|
|
|
sha256 = "c158f58fa8220782ec8dec4170f90c564b978d1c6ead298cc2f67e84613f17b1";
|
2010-11-28 10:27:45 +01:00
|
|
|
}
|
|
|
|
else if stdenv.system == "i686-linux" then
|
2009-10-30 09:45:58 +01:00
|
|
|
fetchurl {
|
2011-06-13 22:42:09 +02:00
|
|
|
url = "http://commondatastorage.googleapis.com/chromium-browser-continuous/Linux/${version}/chrome-linux.zip";
|
|
|
|
sha256 = "01sr882c7hr53001p8bnk5vyj8zfjm6r3i4a6wxzxd17xjh1bcxb";
|
2010-11-28 10:27:45 +01:00
|
|
|
}
|
2010-09-11 16:20:46 +02:00
|
|
|
else throw "Chromium is not supported on this platform.";
|
2009-10-30 09:45:58 +01:00
|
|
|
|
2010-09-11 16:20:46 +02:00
|
|
|
phases = "unpackPhase installPhase";
|
2009-10-30 09:45:58 +01:00
|
|
|
|
2011-08-12 18:45:17 +02:00
|
|
|
buildInputs = [ makeWrapper unzip ];
|
2009-10-30 09:45:58 +01:00
|
|
|
|
2010-11-28 10:27:45 +01:00
|
|
|
libPath =
|
2009-10-30 09:45:58 +01:00
|
|
|
stdenv.lib.makeLibraryPath
|
2011-03-21 15:49:36 +01:00
|
|
|
[ GConf alsaLib bzip2 cairo cups dbus dbus_glib expat
|
|
|
|
ffmpeg fontconfig freetype libX11 libXScrnSaver
|
2011-01-03 01:33:14 +01:00
|
|
|
libXdamage libXext libXrender libXt libXtst libgcrypt libjpeg
|
2011-03-21 15:49:36 +01:00
|
|
|
libpng nspr nss stdenv.gcc.gcc zlib stdenv.gcc.libc
|
|
|
|
gtkLibs.glib gtkLibs.gtk gtkLibs.gdk_pixbuf gtkLibs.pango
|
|
|
|
pam
|
|
|
|
];
|
2009-10-30 09:45:58 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
ensureDir $out/bin
|
2011-08-12 18:45:17 +02:00
|
|
|
ensureDir $out/libexec/chrome
|
|
|
|
|
|
|
|
cp -R * $out/libexec/chrome
|
|
|
|
|
|
|
|
${patchelf}/bin/patchelf \
|
|
|
|
--interpreter "$(cat $NIX_GCC/nix-support/dynamic-linker)" \
|
|
|
|
--set-rpath ${libPath}:$out/lib:${stdenv.gcc.gcc}/lib64:${stdenv.gcc.gcc}/lib \
|
|
|
|
$out/libexec/chrome/chrome
|
|
|
|
|
|
|
|
makeWrapper $out/libexec/chrome/chrome $out/bin/chrome \
|
|
|
|
--prefix LD_LIBRARY_PATH : "${nss}/lib"
|
2009-10-30 09:45:58 +01:00
|
|
|
'';
|
|
|
|
|
2011-02-12 19:47:28 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-09-11 16:20:46 +02:00
|
|
|
description = "Chromium, an open source web browser";
|
2011-02-12 19:47:28 +01:00
|
|
|
homepage = http://www.chromium.org/;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
license = licenses.bsd3;
|
2009-10-30 13:28:44 +01:00
|
|
|
};
|
2009-10-30 09:45:58 +01:00
|
|
|
}
|