about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-05-27 18:18:18 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-05-27 18:18:18 -0500
commit57800e9b0071380ca7965b9912fefb9638470229 (patch)
tree6b8eeb4ec57f5b75219ffb140d1e54ba50d9e787 /pkgs/development
parent2bbf9980f7db9013137b655776ea0aeba57e157c (diff)
downloadnixlib-57800e9b0071380ca7965b9912fefb9638470229.tar
nixlib-57800e9b0071380ca7965b9912fefb9638470229.tar.gz
nixlib-57800e9b0071380ca7965b9912fefb9638470229.tar.bz2
nixlib-57800e9b0071380ca7965b9912fefb9638470229.tar.lz
nixlib-57800e9b0071380ca7965b9912fefb9638470229.tar.xz
nixlib-57800e9b0071380ca7965b9912fefb9638470229.tar.zst
nixlib-57800e9b0071380ca7965b9912fefb9638470229.zip
texlab: install manpage
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/misc/texlab/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/texlab/default.nix b/pkgs/development/tools/misc/texlab/default.nix
index 61f4f6bf73a9..8185b14cd73f 100644
--- a/pkgs/development/tools/misc/texlab/default.nix
+++ b/pkgs/development/tools/misc/texlab/default.nix
@@ -1,6 +1,7 @@
 { stdenv
 , rustPlatform
 , fetchFromGitHub
+, installShellFiles
 , Security
 }:
 
@@ -17,8 +18,14 @@ rustPlatform.buildRustPackage rec {
 
   cargoSha256 = "0iibjh2ll181j69vld1awvjgyv3xwmq0abh10651la4k4jpppx46";
 
+  nativeBuildInputs = [ installShellFiles ];
+
   buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
 
+  postInstall = ''
+    installManPage texlab.1
+  '';
+
   meta = with stdenv.lib; {
     description = "An implementation of the Language Server Protocol for LaTeX";
     homepage = "https://texlab.netlify.com/";