nixpkgs/pkgs/development/tools/phantomjs/default.nix
Shea Levy 9c9b7a427b Update phantomjs
Signed-off-by: Shea Levy <shea@shealevy.com>
2013-08-20 18:56:20 -04:00

60 lines
1.9 KiB
Nix

{ stdenv, fetchurl, freetype, fontconfig }:
assert stdenv.lib.elem stdenv.system [ "i686-linux" "x86_64-linux" ];
stdenv.mkDerivation rec {
name = "phantomjs-1.9.1";
# I chose to use the binary build for now.
# The source version is quite nasty to compile
# because it has bundled a lot of external libraries (like QT and Webkit)
# and no easy/nice way to use the system versions of these
src = if stdenv.system == "i686-linux" then
fetchurl {
url = "http://phantomjs.googlecode.com/files/${name}-linux-i686.tar.bz2";
sha256 = "1r4ssx6v0ah18jy3vjswhki2i21r45qbs1jzh4x672wdc9lxz2p6";
}
else # x86_64-linux
fetchurl {
url = "http://phantomjs.googlecode.com/files/${name}-linux-x86_64.tar.bz2";
sha256 = "1l7hlhspzw3zzsgz9cq0a3j26giynjicvb6y96fj3ipkn4shznnn";
};
buildPhase = ''
patchelf \
--set-interpreter "$(cat $NIX_GCC/nix-support/dynamic-linker)" \
--set-rpath ${freetype}/lib:${fontconfig}/lib:${stdenv.gcc.gcc}/lib64:${stdenv.gcc.gcc}/lib \
bin/phantomjs
'';
dontStrip = true;
installPhase = ''
mkdir -p $out/share/doc/phantomjs
cp -a bin $out
cp -a ChangeLog examples LICENSE.BSD README.md third-party.txt $out/share/doc/phantomjs
'';
meta = {
description = "Headless WebKit with JavaScript API";
longDescription = ''
PhantomJS is a headless WebKit with JavaScript API.
It has fast and native support for various web standards:
DOM handling, CSS selector, JSON, Canvas, and SVG.
PhantomJS is an optimal solution for:
- Headless Website Testing
- Screen Capture
- Page Automation
- Network Monitoring
'';
homepage = http://phantomjs.org/;
license = stdenv.lib.licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.bluescreen303 ];
platforms = ["i686-linux" "x86_64-linux" ];
};
}