88e5f7e2c7
svn path=/nixpkgs/trunk/; revision=33185
37 lines
1.3 KiB
Nix
37 lines
1.3 KiB
Nix
{ stdenv, fetchurl, unzip, xulrunner, makeWrapper }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "conkeror-1.0pre-20120316";
|
|
|
|
src = fetchurl {
|
|
url = http://repo.or.cz/w/conkeror.git/snapshot/1264c0dbbefb6d671504a072d4ddb48d62ccead2.zip;
|
|
sha256 = "1vdxnhqjjvg9cry70byv6d3wib2p4rxhkmv7hs10pq39km1kpj7f";
|
|
};
|
|
|
|
buildInputs = [ unzip makeWrapper ];
|
|
|
|
buildCommand = ''
|
|
mkdir -p $out/libexec/conkeror
|
|
unzip $src -d $out/libexec
|
|
|
|
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;
|
|
};
|
|
}
|