2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv
|
2020-01-09 15:24:56 +01:00
|
|
|
, rustPlatform
|
2021-10-07 17:17:45 +02:00
|
|
|
, fetchCrate
|
2020-01-09 15:24:56 +01:00
|
|
|
, cmake
|
2020-08-20 08:41:44 +02:00
|
|
|
, pkg-config
|
|
|
|
, installShellFiles
|
|
|
|
, ronn
|
2020-01-09 15:24:56 +01:00
|
|
|
, curl
|
|
|
|
, libgit2
|
|
|
|
, libssh2
|
|
|
|
, openssl
|
2020-08-16 13:23:36 +02:00
|
|
|
, Security
|
|
|
|
, zlib
|
|
|
|
}:
|
2018-08-02 10:28:57 +02:00
|
|
|
|
2020-01-09 15:24:56 +01:00
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "cargo-update";
|
2021-10-07 17:17:45 +02:00
|
|
|
version = "7.0.1";
|
2018-08-02 10:28:57 +02:00
|
|
|
|
2021-10-07 17:17:45 +02:00
|
|
|
src = fetchCrate {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "sha256-qUrQWXiK4Gb79Wtcj9nM/FFT/C+b3vAgm9JohvIY2NU=";
|
2020-01-09 15:24:56 +01:00
|
|
|
};
|
|
|
|
|
2021-10-07 17:17:45 +02:00
|
|
|
cargoSha256 = "sha256-jCaP6e/z9/gjKJfBKIq+dq7pWs5tWyct+JCnUFVVHBY=";
|
2018-08-02 10:28:57 +02:00
|
|
|
|
2020-08-20 08:41:44 +02:00
|
|
|
nativeBuildInputs = [ cmake installShellFiles pkg-config ronn ];
|
|
|
|
|
2020-03-29 08:02:57 +02:00
|
|
|
buildInputs = [ libgit2 libssh2 openssl zlib ]
|
2021-01-15 10:19:50 +01:00
|
|
|
++ lib.optionals stdenv.isDarwin [ curl Security ];
|
2018-08-02 10:28:57 +02:00
|
|
|
|
2020-08-20 08:41:44 +02: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-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-01-09 15:24:56 +01: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-17 12:02:06 +01:00
|
|
|
maintainers = with maintainers; [ gerschtli Br1ght0ne johntitor ];
|
2018-08-02 10:28:57 +02:00
|
|
|
};
|
|
|
|
}
|