mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
emacsPackages.org: use new texlive infrastructure
This commit is contained in:
parent
3769692a38
commit
9948d44b40
1 changed files with 4 additions and 3 deletions
|
@ -1,5 +1,4 @@
|
|||
{ fetchurl, stdenv, emacs, texinfo, which, texLive, texLiveCMSuper
|
||||
, texLiveAggregationFun }:
|
||||
{ fetchurl, stdenv, emacs, texinfo, which, texlive }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "org-8.3.2";
|
||||
|
@ -10,7 +9,9 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
|
||||
buildInputs = [ emacs ];
|
||||
nativeBuildInputs = [ (texLiveAggregationFun { paths=[ texinfo texLive texLiveCMSuper ]; }) ];
|
||||
nativeBuildInputs = [ (texlive.combine {
|
||||
inherit (texlive) scheme-small cm-super;
|
||||
}) texinfo ];
|
||||
|
||||
configurePhase =
|
||||
'' sed -i mk/default.mk \
|
||||
|
|
Loading…
Reference in a new issue