nixpkgs/pkgs/applications/networking/browsers/conkeror/default.nix

38 lines
1.3 KiB
Nix
Raw Normal View History

2013-08-18 15:49:52 +02:00
{ stdenv, fetchgit, unzip, xulrunner, makeWrapper }:
stdenv.mkDerivation {
2014-06-16 16:37:37 +02:00
name = "conkeror-1.0pre-20140616";
2013-08-18 15:49:52 +02:00
src = fetchgit {
url = git://repo.or.cz/conkeror.git;
2014-06-16 16:37:37 +02:00
rev = "8a26fff5896a3360549e2adfbf06b1d57e909266";
sha256 = "56f1c71ca1753a63d7599d3e8bf52277711b2693e7709ed7c146f34940441cb4";
};
2013-08-18 15:49:52 +02:00
buildInputs = [ unzip makeWrapper ];
2013-08-18 15:49:52 +02:00
2013-04-03 20:47:42 +02:00
installPhase = ''
mkdir -p $out/libexec/conkeror
2013-04-03 20:47:42 +02:00
cp -r * $out/libexec/conkeror
makeWrapper ${xulrunner}/bin/xulrunner $out/bin/conkeror \
--add-flags $out/libexec/conkeror/application.ini
'';
meta = {
description = "A keyboard-oriented, customizable, extensible web browser";
longDescription = ''
Conkeror is a keyboard-oriented, highly-customizable, highly-extensible
web browser based on Mozilla XULRunner, written mainly in JavaScript,
and inspired by exceptional software such as Emacs and vi. Conkeror
features a sophisticated keyboard system, allowing users to run commands
and interact with content in powerful and novel ways. It is
self-documenting, featuring a powerful interactive help system.
'';
homepage = http://conkeror.org/;
license = [ "MPLv1.1" "GPLv2" "LGPLv2.1" ];
maintainers = with stdenv.lib.maintainers; [ astsmtl chaoflow ];
platforms = with stdenv.lib.platforms; linux;
};
}