2020-01-09 14:24:56 +00:00
|
|
|
{ stdenv
|
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
2020-08-20 07:41:44 +01:00
|
|
|
, pkg-config
|
|
|
|
, installShellFiles
|
|
|
|
, ronn
|
2020-01-09 14:24:56 +00:00
|
|
|
, curl
|
|
|
|
, libgit2
|
|
|
|
, libssh2
|
|
|
|
, openssl
|
2020-08-16 12:23:36 +01:00
|
|
|
, Security
|
|
|
|
, zlib
|
|
|
|
}:
|
2018-08-02 09:28:57 +01:00
|
|
|
|
2020-01-09 14:24:56 +00:00
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "cargo-update";
|
2020-10-14 21:04:23 +01:00
|
|
|
version = "4.1.2";
|
2018-08-02 09:28:57 +01:00
|
|
|
|
2020-01-09 14:24:56 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nabijaczleweli";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-10-14 21:04:23 +01:00
|
|
|
sha256 = "0bpl4y5p0acn1clxgwn2sifx6ggpq9jqw5zrmva7asjf8p8dx3v5";
|
2020-01-09 14:24:56 +00:00
|
|
|
};
|
|
|
|
|
2020-10-14 21:04:23 +01:00
|
|
|
cargoPatches = [ ./0001-Generate-lockfile-for-cargo-update-v4.1.2.patch ];
|
|
|
|
cargoSha256 = "150fpb7wyyxi40z4wai6c94mn84g700c2228316g6y8i07c8ix0d";
|
2018-08-02 09:28:57 +01:00
|
|
|
|
2020-08-20 07:41:44 +01:00
|
|
|
nativeBuildInputs = [ cmake installShellFiles pkg-config ronn ];
|
|
|
|
|
2020-03-29 07:02:57 +01:00
|
|
|
buildInputs = [ libgit2 libssh2 openssl zlib ]
|
2020-08-16 12:23:36 +01:00
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ curl Security ];
|
2018-08-02 09:28:57 +01:00
|
|
|
|
2020-08-20 07:41:44 +01: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
|
|
|
|
'';
|
|
|
|
|
2020-01-09 14:24:56 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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 11:02:06 +00:00
|
|
|
maintainers = with maintainers; [ gerschtli Br1ght0ne johntitor ];
|
2018-08-02 09:28:57 +01:00
|
|
|
};
|
|
|
|
}
|