summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-17 20:46:40 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-01-17 20:59:15 +0700
commitd1852aca3cc8affb62da19c9cc92a986690093ca (patch)
tree72eebfd4b72aa1bf2a43ce8115f1e5592d87ce06 /pkgs/tools/typesetting
parent3f929f738e0641cfa6baccadf2cdc82319219e3b (diff)
pkgs/tools, pkgs/applications: [sS]tdenv.*lib -> lib
Diffstat (limited to 'pkgs/tools/typesetting')
-rw-r--r--pkgs/tools/typesetting/tex/latexrun/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/typesetting/tex/latexrun/default.nix b/pkgs/tools/typesetting/tex/latexrun/default.nix
index 392edfc3a2f3..3a163a5682d6 100644
--- a/pkgs/tools/typesetting/tex/latexrun/default.nix
+++ b/pkgs/tools/typesetting/tex/latexrun/default.nix
@@ -1,4 +1,4 @@
-{ stdenvNoCC, fetchFromGitHub, python3 }:
+{ lib, stdenvNoCC, fetchFromGitHub, python3 }:
stdenvNoCC.mkDerivation {
pname = "latexrun";
@@ -19,7 +19,7 @@ stdenvNoCC.mkDerivation {
chmod +x $out/bin/latexrun
'';
- meta = with stdenvNoCC.lib; {
+ meta = with lib; {
description = "A 21st century LaTeX wrapper";
homepage = "https://github.com/aclements/latexrun";
license = licenses.mit;