fix(eval/deprecation): replace substituteAll by replaceVars

This commit is contained in:
catvayor 2025-05-05 15:06:18 +02:00
parent a99e9007d2
commit dc8b7a8808
Signed by: lbailly
GPG key ID: CE3E645251AC63F3

View file

@ -5,7 +5,7 @@
{
stdenv,
fetchFromGitHub,
substituteAll,
replaceVars,
python3,
pykanidm,
}:
@ -31,8 +31,7 @@ stdenv.mkDerivation rec {
sourceRoot = "source/rlm_python";
patches = [
(substituteAll {
src = ./01-python_path.patch;
(replaceVars ./01-python_path.patch {
inherit pythonPath;
})
];