summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/emacs-modes/org/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/editors/emacs-modes/org/default.nix')
-rw-r--r--pkgs/applications/editors/emacs-modes/org/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/applications/editors/emacs-modes/org/default.nix b/pkgs/applications/editors/emacs-modes/org/default.nix
index ad2bd2f0ba6a..e52011547c7a 100644
--- a/pkgs/applications/editors/emacs-modes/org/default.nix
+++ b/pkgs/applications/editors/emacs-modes/org/default.nix
@@ -1,15 +1,16 @@
-{ fetchurl, stdenv, emacs, texinfo, which, texLive }:
+{ fetchurl, stdenv, emacs, texinfo, which, texLive, texLiveCMSuper
+, texLiveAggregationFun }:
stdenv.mkDerivation rec {
- name = "org-8.2.1";
+ name = "org-8.2.7";
src = fetchurl {
url = "http://orgmode.org/${name}.tar.gz";
- sha256 = "625e2b6786158bcf6c43194075f7638ab8048c68a60025289a051c407e467823";
+ sha256 = "1n864hnjvx5n2gfi7n0xbwvb1k8l5rdh4a3vpbhw23hy8rx3bvaw";
};
buildInputs = [ emacs ];
- nativeBuildInputs = [ texinfo texLive ];
+ nativeBuildInputs = [ (texLiveAggregationFun { paths=[ texinfo texLive texLiveCMSuper ]; }) ];
configurePhase =
'' sed -i mk/default.mk \
@@ -43,7 +44,7 @@ stdenv.mkDerivation rec {
license = "GPLv3+";
- maintainers = with stdenv.lib.maintainers; [ chaoflow ];
- platforms = stdenv.lib.platforms.gnu;
+ maintainers = with stdenv.lib.maintainers; [ chaoflow pSub ];
+ platforms = stdenv.lib.platforms.unix;
};
}