Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions pkgs/tools/package-management/cargo-update/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
, rustPlatform
, fetchFromGitHub
, cmake
, pkg-config
, installShellFiles
, ronn
, curl
, libgit2
, libssh2
, openssl
, pkg-config
, Security
, zlib
}:
Expand All @@ -25,10 +27,22 @@ rustPlatform.buildRustPackage rec {
cargoPatches = [ ./0001-Generate-lockfile-for-cargo-update-v4.1.1.patch ];
cargoSha256 = "1yaawp015gdnlfqkdmqsf95gszz0h5j1vpfjh763y7kk0bp7zswl";

nativeBuildInputs = [ cmake pkg-config ];
nativeBuildInputs = [ cmake installShellFiles pkg-config ronn ];

buildInputs = [ libgit2 libssh2 openssl zlib ]
++ 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; {
description = "A cargo subcommand for checking and applying updates to installed executables";
homepage = "https://github.com/nabijaczleweli/cargo-update";
Expand Down