nixpkgs/pkgs/development/libraries/webkit/default.nix
Michael Raskin e89dbf1184 Disabling MathML build again -- bug submitted upstream...
svn path=/nixpkgs/trunk/; revision=22532
2010-07-08 15:28:34 +00:00

79 lines
2.1 KiB
Nix

args : with args;
let
s = import ./src-for-default.nix;
version = lib.attrByPath ["version"] s.version args;
in
rec {
src = fetchurl {
url = s.url;
sha256 = s.hash;
};
buildInputs = [gtk glib atk cairo curl fontconfig freetype
gettext libjpeg libpng libtiff libxml2 libxslt pango
sqlite icu gperf bison flex autoconf automake libtool
perl intltool pkgconfig libsoup gtkdoc libXt libproxy
enchant python ruby
];
propagatedBuildInputs = [
gstreamer gstPluginsBase gstFfmpeg gstPluginsGood
];
configureCommand = "./autogen.sh ";
configureFlags = [
"--enable-3D-transforms"
"--enable-web-sockets"
"--enable-indexeddb"
"--enable-image-resizer"
# https://bugs.webkit.org/show_bug.cgi?id=41859
# "--enable-mathml"
# "--enable-blob-slice"
# Seem incomplete as of now
# "--enable-file-reader"
# "--enable-file-writer"
# https://bugs.webkit.org/show_bug.cgi?id=40765
# "--enable-wml"
# "--enable-xhtmlmp"
];
/* doConfigure should be specified separately */
phaseNames = ["setVars" /* "paranoidFixComments" */ "doConfigure" (doPatchShebangs ".")
"doReplaceUsrBin" "doMakeInstall" "doAddPrograms"];
setVars = fullDepEntry (''
export NIX_LDFLAGS="$NIX_LDFLAGS -lXt"
'') ["minInit"];
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 (''
ensureDir $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"];
name = s.name;
meta = {
description = "WebKit - a fast and correct HTML renderer";
maintainers = [stdenv.lib.maintainers.raskin];
};
passthru = {
inherit gstreamer gstPluginsBase gstPluginsGood gstFfmpeg;
};
}