1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/applications/networking/browsers/conkeror/default.nix

38 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchgit, unzip, firefox, makeWrapper }:
stdenv.mkDerivation {
2015-03-19 19:12:57 +00:00
name = "conkeror-1.0pre-20150319";
2013-08-18 14:49:52 +01:00
src = fetchgit {
url = git://repo.or.cz/conkeror.git;
2015-03-19 19:12:57 +00:00
rev = "6450632b3f0c315f79e7a9856658083fe8fc9c29";
sha256 = "18cqz1n2n6aimmgd69mdrgmkjf4207k7yz11wihka6b5z1hfiv64";
};
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
makeWrapper ${firefox}/bin/firefox $out/bin/conkeror \
--add-flags "-app $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;
};
}