about summary refs log tree commit diff
path: root/pkgs/development/tools/phantomjs
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2014-11-06 00:23:25 +0300
committerMichael Raskin <7c6f434c@mail.ru>2014-11-06 00:32:31 +0300
commitd66bf89faab9ad437268b6e6f77882133a2ab42e (patch)
tree38a252a2cabf1b2f60210a2a39cf76f406f9c3ef /pkgs/development/tools/phantomjs
parentef321f539d8dff4cfbf69919abfea77737f4f8d0 (diff)
downloadnixlib-d66bf89faab9ad437268b6e6f77882133a2ab42e.tar
nixlib-d66bf89faab9ad437268b6e6f77882133a2ab42e.tar.gz
nixlib-d66bf89faab9ad437268b6e6f77882133a2ab42e.tar.bz2
nixlib-d66bf89faab9ad437268b6e6f77882133a2ab42e.tar.lz
nixlib-d66bf89faab9ad437268b6e6f77882133a2ab42e.tar.xz
nixlib-d66bf89faab9ad437268b6e6f77882133a2ab42e.tar.zst
nixlib-d66bf89faab9ad437268b6e6f77882133a2ab42e.zip
Update PhantomJS; should also fix remarkjs
Diffstat (limited to 'pkgs/development/tools/phantomjs')
-rw-r--r--pkgs/development/tools/phantomjs/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/phantomjs/default.nix b/pkgs/development/tools/phantomjs/default.nix
index 6fc53595efbd..17837933eae6 100644
--- a/pkgs/development/tools/phantomjs/default.nix
+++ b/pkgs/development/tools/phantomjs/default.nix
@@ -3,7 +3,7 @@
 assert stdenv.lib.elem stdenv.system [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
 
 stdenv.mkDerivation rec {
-  name = "phantomjs-1.9.7";
+  name = "phantomjs-1.9.8";
 
   # I chose to use the binary build for now.
   # The source version is quite nasty to compile
@@ -13,18 +13,18 @@ stdenv.mkDerivation rec {
   src = if stdenv.system == "i686-linux" then
           fetchurl {
             url = "https://bitbucket.org/ariya/phantomjs/downloads/${name}-linux-i686.tar.bz2";
-            sha256 = "1ffd5544wnkww5cgwsims4bk4bymvm6pm19p32nbhwabxqhbnj9a";
+            sha256 = "11fzmssz9pqf3arh4f36w06sl2nyz8l9h8iyxyd7w5aqnq5la0j1";
           }
         else
           if stdenv.system == "x86_64-linux" then
             fetchurl {
               url = "https://bitbucket.org/ariya/phantomjs/downloads/${name}-linux-x86_64.tar.bz2";
-              sha256 = "06mhvj8rx298j0mrijw48zfm28hqgy81vdr1vv0jp4ncxbvijfs7";
+              sha256 = "0fhnqxxsxhy125fmif1lwgnlhfx908spy7fx9mng4w72320n5nd1";
             }
           else # x86_64-darwin
             fetchurl {
               url = "https://bitbucket.org/ariya/phantomjs/downloads/${name}-macosx.zip";
-              sha256 = "0vsagvx181gnypi6kgmxp4br6hnvd81vyy3cbz5pxccdys7iywvj";
+              sha256 = "0j0aq8dgzmb210xdrh0v3d4nblskl3zsckl8bzf1a603wcx085cg";
             };
 
   buildInputs = if stdenv.isDarwin then [ unzip ] else [];