chore: fix package.nix

This commit is contained in:
2026-06-01 21:37:04 +09:00
parent 9dcbd4c3e0
commit 7f62c457ad
2 changed files with 8 additions and 6 deletions
-6
View File
@@ -91,10 +91,6 @@ rustPlatform.buildRustPackage rec {
# derivation is scoped to packaging the user-facing binaries.
doCheck = false;
postInstall = ''
install -Dm644 docs/environment.md "$out/share/doc/yoi/environment.md"
'';
doInstallCheck = true;
installCheckPhase = ''
runHook preInstallCheck
@@ -109,8 +105,6 @@ rustPlatform.buildRustPackage rec {
fi
grep -q "invalid --session UUID" yoi.err
test -f "$out/share/doc/yoi/environment.md"
runHook postInstallCheck
'';