Merge pull request #897 from Gerg-L/blink

fix: install blink docs
This commit is contained in:
raf 2025-05-13 14:33:33 +03:00 committed by GitHub
commit db2c5e6744
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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