2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv
|
2020-04-24 23:36:52 +00:00
|
|
|
, rustPlatform
|
2021-10-08 15:17:17 +00:00
|
|
|
, fetchCrate
|
2020-04-24 23:36:52 +00:00
|
|
|
, cmake
|
2020-09-25 04:45:31 +00:00
|
|
|
, pkg-config
|
|
|
|
, installShellFiles
|
|
|
|
, ronn
|
2020-04-24 23:36:52 +00:00
|
|
|
, curl
|
|
|
|
, libgit2
|
|
|
|
, libssh2
|
|
|
|
, openssl
|
2020-08-20 17:08:02 +00:00
|
|
|
, Security
|
|
|
|
, zlib
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "cargo-update";
|
2022-12-17 10:02:37 +00:00
|
|
|
version = "11.1.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-10-08 15:17:17 +00:00
|
|
|
src = fetchCrate {
|
|
|
|
inherit pname version;
|
2022-12-17 10:02:37 +00:00
|
|
|
sha256 = "sha256-ml+LqfnDld+I3G6+LaPJOeZa+swCtuu0ndW0yJraSxs=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-12-17 10:02:37 +00:00
|
|
|
cargoSha256 = "sha256-0exatgmksg07KQO/3s9BD4uIZRHwjytQPtaRv+JydPc=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-09-25 04:45:31 +00:00
|
|
|
nativeBuildInputs = [ cmake installShellFiles pkg-config ronn ];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [ libgit2 libssh2 openssl zlib ]
|
2021-01-15 22:18:51 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin [ curl Security ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-09-25 04:45:31 +00:00
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A cargo subcommand for checking and applying updates to installed executables";
|
|
|
|
homepage = "https://github.com/nabijaczleweli/cargo-update";
|
|
|
|
license = licenses.mit;
|
2020-11-19 00:13:47 +00:00
|
|
|
maintainers = with maintainers; [ gerschtli Br1ght0ne johntitor ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|