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

40 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchgit, unzip, firefox, makeWrapper }:
stdenv.mkDerivation rec {
pkgname = "conkeror";
version = "1.0pre-20160130";
name = "${pkgname}-${version}";
2013-08-18 15:49:52 +02:00
src = fetchgit {
url = git://repo.or.cz/conkeror.git;
rev = "3e4732cd0d15aa70121fe0a0403103b777c964bf";
sha256 = "1299b1kdfd2vip3w02jzvj2i8scjpsvpx19d2c8ms2pizz7xxmp4";
};
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 ${firefox}/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 chaoflow ];
platforms = platforms.linux;
};
}