Add upstream Org-Mode.

svn path=/nixpkgs/trunk/; revision=22693
This commit is contained in:
Ludovic Courtès 2010-07-22 08:59:12 +00:00
parent 3d6c9cfd7f
commit f497701642
2 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ fetchurl, stdenv, emacs, texinfo }:
stdenv.mkDerivation rec {
name = "org-7.01f";
src = fetchurl {
url = "http://orgmode.org/${name}.tar.gz";
sha256 = "1db7s57g8gh8w0464n18lxpcz270x9ns63b2blhkz8wrdnk57fia";
};
buildInputs = [ emacs texinfo ];
configurePhase =
'' sed -i Makefile \
-e "s|^prefix=.*$|prefix=$out|g"
'';
installPhase =
'' make install install-info
ensureDir "$out/share/doc/${name}"
cp -v doc/orgcard*.{pdf,txt} "$out/share/doc/${name}"
'';
meta = {
description = "Org-Mode, an Emacs mode for notes, project planning, and authoring";
longDescription =
'' Org-mode is for keeping notes, maintaining ToDo lists, doing project
planning, and authoring with a fast and effective plain-text system.
This package contains a version of Org-mode typically more recent
than that found in GNU Emacs.
'';
license = "GPLv3+";
maintainers = [ stdenv.lib.maintainers.ludo ];
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
};
}

View file

@ -7838,6 +7838,10 @@ let
inherit fetchurl stdenv;
};
org = import ../applications/editors/emacs-modes/org {
inherit fetchurl stdenv emacs texinfo;
};
prologMode = import ../applications/editors/emacs-modes/prolog {
inherit fetchurl stdenv;
};