mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
conkeror: New nixpkg.
svn path=/nixpkgs/trunk/; revision=21296
This commit is contained in:
parent
4f9ffa5e59
commit
f45cfbe272
26
pkgs/applications/networking/browsers/conkeror/default.nix
Normal file
26
pkgs/applications/networking/browsers/conkeror/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ stdenv, fetchurl }:
|
||||
stdenv.mkDerivation {
|
||||
name = "conkeror-0.9.2";
|
||||
src = fetchurl {
|
||||
url = http://repo.or.cz/w/conkeror.git/snapshot/efacc207b0d6c7b3899fc584c9f48547b18da076.tar.gz;
|
||||
sha256 = "179rkf32p83dzgfjghc4kglb03h8aivddliynsydr6zxy8c4p28f";
|
||||
};
|
||||
installPhase = ''
|
||||
cp -r . $out
|
||||
'';
|
||||
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 ];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
};
|
||||
}
|
@ -7029,6 +7029,13 @@ let
|
||||
wxGTK = wxGTK26;
|
||||
};
|
||||
|
||||
conkeror = xulrunnerWrapper {
|
||||
launcher = "conkeror";
|
||||
application = import ../applications/networking/browsers/conkeror {
|
||||
inherit stdenv fetchurl;
|
||||
};
|
||||
};
|
||||
|
||||
cuneiform = builderDefsPackage (import ../tools/graphics/cuneiform) {
|
||||
inherit cmake patchelf;
|
||||
imagemagick=imagemagick;
|
||||
|
Loading…
Reference in New Issue
Block a user