da437144fa
This should make webkit_gtk2 build.
110 lines
3.1 KiB
Nix
110 lines
3.1 KiB
Nix
|
|
args : with args;
|
|
let
|
|
s = import ./src-for-gtk2.nix;
|
|
version = lib.attrByPath ["version"] s.version args;
|
|
in
|
|
rec {
|
|
src = fetchurl {
|
|
url = s.url;
|
|
sha256 = s.hash;
|
|
};
|
|
|
|
buildInputs = with xlibs; [
|
|
pkgconfig libtool intltool autoconf automake gperf bison flex
|
|
gtk2 glib atk cairo pango fontconfig freetype libsoup gtkdoc
|
|
libjpeg libpng libtiff libxml2 libxslt sqlite icu curl
|
|
which libproxy geoclue enchant python ruby perl
|
|
mesa libXt libXrender renderproto libXcomposite compositeproto
|
|
libXdamage damageproto kbproto
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
gstreamer gst_plugins_base gst_ffmpeg gst_plugins_good
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-gtk=2.0"
|
|
|
|
# "--enable-3D-transforms" # no longer recognized
|
|
"--enable-web-sockets"
|
|
"--enable-web-timing"
|
|
|
|
# https://bugs.webkit.org/show_bug.cgi?id=55294
|
|
"--enable-image-resizer"
|
|
|
|
"--enable-geolocation"
|
|
|
|
# Not implemented?
|
|
# "--enable-web-audio"
|
|
|
|
"--enable-mathml"
|
|
|
|
#"--enable-wml"
|
|
|
|
# https://bugs.webkit.org/show_bug.cgi?id=45110
|
|
#"--enable-indexed-database"
|
|
|
|
# Doesn't work in release...
|
|
#"--enable-xhtmlmp"
|
|
|
|
# "--enable-input-speech"
|
|
|
|
#"--enable-file-writer" # no longer recognized
|
|
"--enable-blob"
|
|
|
|
# https://bugs.webkit.org/show_bug.cgi?id=59430
|
|
# "--enable-directory-upload"
|
|
|
|
# https://bugs.webkit.org/show_bug.cgi?id=58443
|
|
# "--enable-file-system"
|
|
|
|
"--enable-dependency-tracking" # to fix parallel building
|
|
];
|
|
|
|
# instead of enableParallelBuilding = true;
|
|
makeFlags = "-j$NIX_BUILD_CORES";
|
|
|
|
/* doConfigure should be specified separately */
|
|
phaseNames = ["doPatch" "fixConfigure" /* "paranoidFixComments" */ "doConfigure" (doPatchShebangs ".")
|
|
"doReplaceUsrBin" "doMakeInstall" "doAddPrograms"];
|
|
|
|
patches = [ ./bison26.patch ]; # http://trac.webkit.org/changeset/124099
|
|
patchFlags = "-p2";
|
|
|
|
#doCheck = true; # tests still have problems
|
|
|
|
doReplaceUsrBin = fullDepEntry (''
|
|
for i in $(find . -name '*.pl') $(find . -name '*.pm'); do
|
|
sed -e 's@/usr/bin/gcc@gcc@' -i $i
|
|
done
|
|
'') ["minInit" "doUnpack"];
|
|
|
|
doAddPrograms = fullDepEntry (''
|
|
mkdir -p $out/bin
|
|
for i in Programs/.libs/* Programs/*; do
|
|
cp $i $out/bin/webkit-program-$(basename $i) || true
|
|
done
|
|
'') ["minInit" "doMake" "defEnsureDir"];
|
|
|
|
paranoidFixComments = fullDepEntry (''
|
|
sed -re 's@( |^)//.*@/* & */@' -i $(find . -name '*.c' -o -name '*.h')
|
|
'') ["minInit" "doUnpack"];
|
|
|
|
# See http://archive.linuxfromscratch.org/mail-archives/blfs-dev/2012-April/022893.html
|
|
fixConfigure = fullDepEntry (''
|
|
sed -i -e 's/=GSTREAMER_0_10_REQUIRED_VERSION/=\$GSTREAMER_0_10_REQUIRED_VERSION/' \
|
|
-e 's/=GSTREAMER_0_10_PLUGINS_BASE_REQUIRED_VERSION/=\$GSTREAMER_0_10_PLUGINS_BASE_REQUIRED_VERSION/' \
|
|
configure{,.ac}
|
|
'') ["minInit" "doUnpack"];
|
|
|
|
name = s.name;
|
|
meta = {
|
|
description = "WebKit - a fast and correct HTML renderer";
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
|
};
|
|
passthru = {
|
|
inherit gstreamer gst_plugins_base gst_plugins_good gst_ffmpeg libsoup;
|
|
};
|
|
}
|