fix: install blink docs

This commit is contained in:
Gerg-L 2025-05-12 20:04:29 -04:00
commit e72bf9398d
No known key found for this signature in database

View file

@ -14,8 +14,15 @@ rustPlatform.buildRustPackage (finalAttrs: {
hash = "sha256-bKe8SSg1HPWE7b4iRQJwiOVCrvvgttuHCOIa4U/38AY="; hash = "sha256-bKe8SSg1HPWE7b4iRQJwiOVCrvvgttuHCOIa4U/38AY=";
}; };
forceShare = [
"man"
"info"
];
postInstall = '' postInstall = ''
cp -r {lua,plugin} "$out" cp -r {lua,plugin} "$out"
mkdir -p "$out/doc"
cp 'doc/'*'.txt' "$out/doc/"
mkdir -p "$out/target" mkdir -p "$out/target"
mv "$out/lib" "$out/target/release" mv "$out/lib" "$out/target/release"
''; '';