Merge pull request #95835 from danieldk/cargo-update-man

cargo-update: install man pages
This commit is contained in:
Daniël de Kok
2020-08-20 22:13:32 +02:00
committed by GitHub
@@ -2,11 +2,13 @@
, rustPlatform , rustPlatform
, fetchFromGitHub , fetchFromGitHub
, cmake , cmake
, pkg-config
, installShellFiles
, ronn
, curl , curl
, libgit2 , libgit2
, libssh2 , libssh2
, openssl , openssl
, pkg-config
, Security , Security
, zlib , zlib
}: }:
@@ -25,10 +27,22 @@ rustPlatform.buildRustPackage rec {
cargoPatches = [ ./0001-Generate-lockfile-for-cargo-update-v4.1.1.patch ]; cargoPatches = [ ./0001-Generate-lockfile-for-cargo-update-v4.1.1.patch ];
cargoSha256 = "1yaawp015gdnlfqkdmqsf95gszz0h5j1vpfjh763y7kk0bp7zswl"; cargoSha256 = "1yaawp015gdnlfqkdmqsf95gszz0h5j1vpfjh763y7kk0bp7zswl";
nativeBuildInputs = [ cmake pkg-config ]; nativeBuildInputs = [ cmake installShellFiles pkg-config ronn ];
buildInputs = [ libgit2 libssh2 openssl zlib ] buildInputs = [ libgit2 libssh2 openssl zlib ]
++ stdenv.lib.optionals stdenv.isDarwin [ curl Security ]; ++ stdenv.lib.optionals stdenv.isDarwin [ curl Security ];
postBuild = ''
# Man pages contain non-ASCII, so explicitly set encoding to UTF-8.
HOME=$TMPDIR \
RUBYOPT="-E utf-8:utf-8" \
ronn -r --organization="cargo-update developers" man/*.md
'';
postInstall = ''
installManPage man/*.1
'';
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A cargo subcommand for checking and applying updates to installed executables"; description = "A cargo subcommand for checking and applying updates to installed executables";
homepage = "https://github.com/nabijaczleweli/cargo-update"; homepage = "https://github.com/nabijaczleweli/cargo-update";