From e72bf9398df3801ea7ee61fe5e4725cec1f9bd8e Mon Sep 17 00:00:00 2001 From: Gerg-L Date: Mon, 12 May 2025 20:04:29 -0400 Subject: [PATCH] fix: install blink docs --- flake/blink/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/flake/blink/default.nix b/flake/blink/default.nix index 08c87073..ef1498d8 100644 --- a/flake/blink/default.nix +++ b/flake/blink/default.nix @@ -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" '';