about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorChristian Richter <mail@christian-richter.info>2016-07-15 14:15:13 +0200
committerChristian Richter <mail@christian-richter.info>2016-07-15 14:15:13 +0200
commita4c965ef1b016195d39a281fe602d54208f59672 (patch)
tree1dabb7a83ce3be35fb7b7850b4add7ad13b232c4 /pkgs
parent5d0014801ecfad8f977b2b69b284b7043c564141 (diff)
downloadnixlib-a4c965ef1b016195d39a281fe602d54208f59672.tar
nixlib-a4c965ef1b016195d39a281fe602d54208f59672.tar.gz
nixlib-a4c965ef1b016195d39a281fe602d54208f59672.tar.bz2
nixlib-a4c965ef1b016195d39a281fe602d54208f59672.tar.lz
nixlib-a4c965ef1b016195d39a281fe602d54208f59672.tar.xz
nixlib-a4c965ef1b016195d39a281fe602d54208f59672.tar.zst
nixlib-a4c965ef1b016195d39a281fe602d54208f59672.zip
webkitgtk24x: 2.4.9 -> 2.4.11
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/webkitgtk/2.4.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/webkitgtk/2.4.nix b/pkgs/development/libraries/webkitgtk/2.4.nix
index cc7644f742d5..e6e61e0482cb 100644
--- a/pkgs/development/libraries/webkitgtk/2.4.nix
+++ b/pkgs/development/libraries/webkitgtk/2.4.nix
@@ -15,7 +15,7 @@ assert stdenv.isDarwin -> !enableCredentialStorage;
 with stdenv.lib;
 stdenv.mkDerivation rec {
   name = "webkitgtk-${version}";
-  version = "2.4.9";
+  version = "2.4.11";
 
   meta = with stdenv.lib; {
     description = "Web content rendering engine, GTK+ port";
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
 
   src = fetchurl {
     url = "http://webkitgtk.org/releases/${name}.tar.xz";
-    sha256 = "0r651ar3p0f8zwl7764kyimxk5hy88cwy116pv8cl5l8hbkjkpxg";
+    sha256 = "1xsvnvyvlywwyf6m9ainpsg87jkxjmd37q6zgz9cxb7v3c2ym2jq";
   };
 
   CC = "cc";
@@ -46,6 +46,7 @@ stdenv.mkDerivation rec {
 
   configureFlags = with stdenv.lib; [
     "--disable-geolocation"
+    "--disable-jit"
     (optionalString enableIntrospection "--enable-introspection")
   ] ++ optional withGtk2 [
     "--with-gtk=2.0"