forked from mirrors/nixpkgs
webkitSVN: Remove
It hasn't been updated in a long time.
This commit is contained in:
parent
60355207c3
commit
b509c78ea3
|
@ -1,91 +0,0 @@
|
|||
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 which renderproto libXrender geoclue
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
gstreamer gst_plugins_base gst_ffmpeg gst_plugins_good
|
||||
];
|
||||
|
||||
configureCommand = "./autogen.sh ";
|
||||
configureFlags = [
|
||||
"--enable-3D-transforms"
|
||||
"--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"
|
||||
|
||||
"--enable-xhtmlmp"
|
||||
|
||||
# "--enable-input-speech"
|
||||
|
||||
"--enable-file-writer"
|
||||
"--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"
|
||||
];
|
||||
|
||||
/* 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 (''
|
||||
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"];
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -5533,21 +5533,6 @@ let
|
|||
inherit gstreamer gst_plugins_base gst_ffmpeg gst_plugins_good;
|
||||
};
|
||||
|
||||
webkitSVN =
|
||||
builderDefsPackage ../development/libraries/webkit/svn.nix {
|
||||
inherit (gnome) gtkdoc libsoup;
|
||||
inherit gtk atk pango glib;
|
||||
inherit freetype fontconfig gettext gperf curl
|
||||
libjpeg libtiff libxml2 libxslt sqlite
|
||||
icu cairo perl intltool automake libtool
|
||||
pkgconfig autoconf bison libproxy enchant
|
||||
python ruby which flex geoclue;
|
||||
inherit gstreamer gst_plugins_base gst_ffmpeg
|
||||
gst_plugins_good;
|
||||
inherit (xlibs) libXt renderproto libXrender;
|
||||
inherit libpng;
|
||||
};
|
||||
|
||||
wildmidi = callPackage ../development/libraries/wildmidi { };
|
||||
|
||||
wvstreams = callPackage ../development/libraries/wvstreams { };
|
||||
|
|
|
@ -1741,7 +1741,6 @@ let
|
|||
wdfs = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; };
|
||||
webkit = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; };
|
||||
webkit_gtk2 = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; };
|
||||
webkitSVN = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; };
|
||||
weechat = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; };
|
||||
welkin = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; };
|
||||
wesnoth = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; };
|
||||
|
|
Loading…
Reference in a new issue