base16-builder: remove reference to python2

pkgs.nodejs_18 uses python311, which means pkgs.python2 will never be used
This commit is contained in:
Benjamin Sparks
2025-03-21 01:06:38 +01:00
parent 3814cd0577
commit b6ecdd7c8f

View File

@@ -6,7 +6,7 @@
let
nodeEnv = import ../../development/node-packages/node-env.nix {
inherit (pkgs) stdenv lib python2 runCommand writeTextFile writeShellScript;
inherit (pkgs) stdenv lib runCommand writeTextFile writeShellScript;
inherit pkgs nodejs;
libtool = if pkgs.stdenv.hostPlatform.isDarwin then pkgs.cctools or pkgs.darwin.cctools else null;
};