4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
53 lines
1.3 KiB
Nix
53 lines
1.3 KiB
Nix
{ lib, stdenv
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, pkg-config
|
|
, installShellFiles
|
|
, ronn
|
|
, curl
|
|
, libgit2
|
|
, libssh2
|
|
, openssl
|
|
, Security
|
|
, zlib
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-update";
|
|
version = "4.1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nabijaczleweli";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0bpl4y5p0acn1clxgwn2sifx6ggpq9jqw5zrmva7asjf8p8dx3v5";
|
|
};
|
|
|
|
cargoPatches = [ ./0001-Generate-lockfile-for-cargo-update-v4.1.2.patch ];
|
|
cargoSha256 = "150fpb7wyyxi40z4wai6c94mn84g700c2228316g6y8i07c8ix0d";
|
|
|
|
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 lib; {
|
|
description = "A cargo subcommand for checking and applying updates to installed executables";
|
|
homepage = "https://github.com/nabijaczleweli/cargo-update";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ gerschtli Br1ght0ne johntitor ];
|
|
};
|
|
}
|