about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2018-09-06 08:09:53 -0400
committerShea Levy <shea@shealevy.com>2018-09-06 08:09:53 -0400
commit18337f3ece325ac0b0b26d05e2ccbe5f6398c937 (patch)
tree401b66e49052817f7042406b51a71e1597dbbf3e /pkgs/tools
parent0af9072e74c9e70af62e828ba4fb21391df2e601 (diff)
parent6da6accd303be776bb4e958da52046da86f9cb5c (diff)
downloadnixlib-18337f3ece325ac0b0b26d05e2ccbe5f6398c937.tar
nixlib-18337f3ece325ac0b0b26d05e2ccbe5f6398c937.tar.gz
nixlib-18337f3ece325ac0b0b26d05e2ccbe5f6398c937.tar.bz2
nixlib-18337f3ece325ac0b0b26d05e2ccbe5f6398c937.tar.lz
nixlib-18337f3ece325ac0b0b26d05e2ccbe5f6398c937.tar.xz
nixlib-18337f3ece325ac0b0b26d05e2ccbe5f6398c937.tar.zst
nixlib-18337f3ece325ac0b0b26d05e2ccbe5f6398c937.zip
Merge branch 'no-toPath'
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/typesetting/tex/texlive/combine.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/typesetting/tex/texlive/combine.nix b/pkgs/tools/typesetting/tex/texlive/combine.nix
index 8b3e320fd269..41ec8ad52694 100644
--- a/pkgs/tools/typesetting/tex/texlive/combine.nix
+++ b/pkgs/tools/typesetting/tex/texlive/combine.nix
@@ -35,7 +35,7 @@ let
 
   mkUniquePkgs = pkgs: fastUnique (a: b: a < b) # highlighting hack: >
     # here we deal with those dummy packages needed for hyphenation filtering
-    (map (p: if lib.isDerivation p then builtins.toPath p else "") pkgs);
+    (map (p: if lib.isDerivation p then p.outPath else "") pkgs);
 
 in buildEnv {
   name = "texlive-${extraName}-${bin.texliveYear}";