lol

gnatcoll-*: get python binary name from derivation

+2 -2
+2 -2
pkgs/development/libraries/ada/gnatcoll/bindings.nix
··· 68 68 69 69 buildPhase = '' 70 70 runHook preBuild 71 - python3 ${component}/setup.py build --prefix $out $buildFlags 71 + ${python3.interpreter} ${component}/setup.py build --prefix $out $buildFlags 72 72 runHook postBuild 73 73 ''; 74 74 75 75 installPhase = '' 76 76 runHook preInstall 77 - python3 ${component}/setup.py install --prefix $out 77 + ${python3.interpreter} ${component}/setup.py install --prefix $out 78 78 runHook postInstall 79 79 ''; 80 80