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

40 lines
1.3 KiB
Nix
Raw Normal View History

2018-03-03 03:18:07 +00:00
{ stdenv, fetchgit, unzip, firefox-esr, makeWrapper }:
stdenv.mkDerivation rec {
pkgname = "conkeror";
2018-03-03 03:19:39 +00:00
version = "1.0.4";
name = "${pkgname}-${version}";
2013-08-18 14:49:52 +01:00
src = fetchgit {
url = git://repo.or.cz/conkeror.git;
2016-06-22 00:14:03 +01:00
rev = "refs/tags/${version}";
2018-03-03 03:19:39 +00:00
sha256 = "10c57wqybp9kcjpkb01wxq0h3vafcdb1g5kb4k8sb2zajg59afv8";
};
2013-08-18 14:49:52 +01:00
buildInputs = [ unzip makeWrapper ];
2013-08-18 14:49:52 +01:00
2013-04-03 19:47:42 +01:00
installPhase = ''
mkdir -p $out/libexec/conkeror
2013-04-03 19:47:42 +01:00
cp -r * $out/libexec/conkeror
2018-03-03 03:18:07 +00:00
makeWrapper ${firefox-esr}/bin/firefox $out/bin/conkeror \
--add-flags "-app $out/libexec/conkeror/application.ini"
'';
meta = with stdenv.lib; {
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 = with licenses; [ mpl11 gpl2 lgpl21 ];
maintainers = with maintainers; [ astsmtl ];
platforms = platforms.linux;
};
}