mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
c9a2081809
svn path=/nixpkgs/trunk/; revision=31760
37 lines
1.3 KiB
Nix
37 lines
1.3 KiB
Nix
{ stdenv, fetchurl, unzip, xulrunner, makeWrapper }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "conkeror-1.0pre-20110917";
|
|
|
|
src = fetchurl {
|
|
url = http://repo.or.cz/w/conkeror.git/snapshot/9d1f522674379874e502545babe0c843f78fa43c.zip;
|
|
sha256 = "1ga3d9rc3xfaxvjnhnar752q9ga897q9fck0864i7rh0w7xbrhx2";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|