org-mode: upgrade to 7.9.1
This commit is contained in:
parent
b3c63a98f0
commit
2b8d80d22d
@ -1,30 +1,24 @@
|
|||||||
{ fetchurl, stdenv, emacs, texinfo, which }:
|
{ fetchurl, stdenv, emacs, texinfo, which, texLive }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "org-7.8.03";
|
name = "org-7.9.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://orgmode.org/${name}.tar.gz";
|
url = "http://orgmode.org/${name}.tar.gz";
|
||||||
sha256 = "49357cca7d892e70cd2dfcc0b5d96d9fd164ef5a1f251ace3865ecb27dc1e958";
|
sha256 = "0kz1dnzfpmmslwal150z9rxrnddjpaw2glx26qihpxzs0zzpw201";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ emacs texinfo ];
|
buildInputs = [ emacs ];
|
||||||
|
buildNativeInputs = [ texinfo texLive ];
|
||||||
patchPhase =
|
|
||||||
'' sed -i "lisp/org-clock.el" -e's|"which"|"${which}/bin/which"|g'
|
|
||||||
'';
|
|
||||||
|
|
||||||
configurePhase =
|
configurePhase =
|
||||||
'' sed -i Makefile \
|
'' sed -i mk/default.mk \
|
||||||
-e "s|^prefix=.*$|prefix=$out|g"
|
-e "s|^prefix\t=.*$|prefix=$out|g"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
#XXX: fails because of missing UTILITIES/manfull.pl, currently not
|
postBuild =
|
||||||
# included in the release tarball, but git.
|
'' make doc
|
||||||
|
'';
|
||||||
#postBuild =
|
|
||||||
# '' make doc
|
|
||||||
# '';
|
|
||||||
|
|
||||||
installPhase =
|
installPhase =
|
||||||
'' make install install-info
|
'' make install install-info
|
||||||
|
Loading…
x
Reference in New Issue
Block a user