42 lines
1 KiB
Nix
42 lines
1 KiB
Nix
|
{ 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
|
||
|
};
|
||
|
}
|