Don't copy from $src since it makes patching impossible

This commit is contained in:
Sven van Heugten 2026-03-10 17:42:50 +01:00
parent 210dd4d72d
commit d8c1e7a2c8
No known key found for this signature in database
GPG key ID: D612F88666F4F660

View file

@ -55,7 +55,7 @@ resholve.mkDerivation {
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp $src/bin/git-check-assertions $out/bin/git-check-assertions
cp bin/git-check-assertions $out/bin/git-check-assertions
runHook postInstall
'';