mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
c556a6ea46
function, so obsolete it. svn path=/nixpkgs/branches/stdenv-updates/; revision=31644
68 lines
2.4 KiB
Nix
68 lines
2.4 KiB
Nix
{ GConf, alsaLib, bzip2, cairo, cups, dbus, dbus_glib, expat
|
||
, fetchurl, ffmpeg, fontconfig, freetype, gtkLibs, libX11, libXfixes
|
||
, libXScrnSaver, libXdamage, libXext, libXrender, libXt, libXtst
|
||
, libgcrypt, libjpeg, libpng, makeWrapper, nspr, nss, patchelf
|
||
, stdenv, unzip, zlib, pam, pcre }:
|
||
|
||
assert stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux" ;
|
||
|
||
stdenv.mkDerivation rec {
|
||
name = "chromium-17.0.943.0-pre${version}";
|
||
|
||
# To determine the latest revision, get
|
||
# ‘http://commondatastorage.googleapis.com/chromium-browser-continuous/Linux/LAST_CHANGE’.
|
||
# For the version number, see ‘about:config’.
|
||
version = "110566";
|
||
|
||
src =
|
||
if stdenv.system == "x86_64-linux" then
|
||
fetchurl {
|
||
url = "http://commondatastorage.googleapis.com/chromium-browser-continuous/Linux_x64/${version}/chrome-linux.zip";
|
||
sha256 = "0pi2qbcvqy9gn2s0bfqlam3mj5ghnnnkrbxrrjl63737377an7ha";
|
||
}
|
||
else if stdenv.system == "i686-linux" then
|
||
fetchurl {
|
||
url = "http://commondatastorage.googleapis.com/chromium-browser-continuous/Linux/${version}/chrome-linux.zip";
|
||
sha256 = "0mk8ikgz97i69qy1cy3cqw4a2ff2ixjzyw5i86fmrq7m1f156yva";
|
||
}
|
||
else throw "Chromium is not supported on this platform.";
|
||
|
||
phases = "unpackPhase installPhase";
|
||
|
||
buildInputs = [ makeWrapper unzip ];
|
||
|
||
libPath =
|
||
stdenv.lib.makeLibraryPath
|
||
[ GConf alsaLib bzip2 cairo cups dbus dbus_glib expat
|
||
ffmpeg fontconfig freetype libX11 libXScrnSaver libXfixes
|
||
libXdamage libXext libXrender libXt libXtst libgcrypt libjpeg
|
||
libpng nspr stdenv.gcc.gcc zlib stdenv.gcc.libc
|
||
gtkLibs.glib gtkLibs.gtk gtkLibs.gdk_pixbuf gtkLibs.pango
|
||
pam
|
||
];
|
||
|
||
installPhase = ''
|
||
mkdir -p $out/bin
|
||
mkdir -p $out/libexec/chrome
|
||
|
||
cp -R * $out/libexec/chrome
|
||
|
||
strip $out/libexec/chrome/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 : "${pcre}/lib:${nss}/lib"
|
||
'';
|
||
|
||
meta = with stdenv.lib; {
|
||
description = "Chromium, an open source web browser";
|
||
homepage = http://www.chromium.org/;
|
||
maintainers = [ maintainers.goibhniu ];
|
||
license = licenses.bsd3;
|
||
};
|
||
}
|