summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/graphics
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-30 09:42:34 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-01-30 14:42:17 +0700
commit32fc8b9134c5fd56851ba1845f04d17484ea7170 (patch)
treebd2b445d4132151ca3e2599f64ab1da0ddc6f9ce /pkgs/tools/graphics
parent78b5cfc15a06c7c2aff2d7fd5597830bb1e0626d (diff)
pkgs/development: stdenv.lib -> lib in node-composition files
Future updates to these files should generate them with node2nix 1.9.0 which removes stdenv.lib from the generated Nix.
Diffstat (limited to 'pkgs/tools/graphics')
-rw-r--r--pkgs/tools/graphics/ldgallery/viewer/node-composition.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/graphics/ldgallery/viewer/node-composition.nix b/pkgs/tools/graphics/ldgallery/viewer/node-composition.nix
index 55566aafc585..4b10352ab0dc 100644
--- a/pkgs/tools/graphics/ldgallery/viewer/node-composition.nix
+++ b/pkgs/tools/graphics/ldgallery/viewer/node-composition.nix
@@ -6,7 +6,7 @@
let
nodeEnv = import ../../../../development/node-packages/node-env.nix {
- inherit (pkgs) stdenv python2 util-linux runCommand writeTextFile;
+ inherit (pkgs) lib stdenv python2 util-linux runCommand writeTextFile;
inherit nodejs;
libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null;
};