cargo-c: 0.9.29 -> 0.9.31

This commit:

* Updates cargo-c from v0.9.29 to 0.9.31.
* Adds myself as a maintainer, since the prev. maintainer stepped down
  and I have an interest in keeping cargo-c usable.

Changelog:

  https://github.com/lu-zero/cargo-c/compare/v0.9.29...v0.9.31
This commit is contained in:
Daniel McCarney 2024-03-28 12:04:20 -04:00
parent 0da20e2b84
commit dbd5d47b03

View File

@ -13,16 +13,16 @@
rustPlatform.buildRustPackage rec {
pname = "cargo-c";
version = "0.9.29";
version = "0.9.31";
src = fetchCrate {
inherit pname;
# this version may need to be updated along with package version
version = "${version}+cargo-0.76.0";
hash = "sha256-Uy5Bm8WwN3jQO2btnV/ayxTlIJAe5q2FUvhxCCrn9U8=";
version = "${version}+cargo-0.78.0";
hash = "sha256-RqwUV3e02GykYH/pWHjoent+gix+CD+t3yAQxqUmo54=";
};
cargoHash = "sha256-fkekUCZReiexdtiQcWx+Hqz4XDDbRGa4fGheBCNZ3Qw=";
cargoHash = "sha256-SfKDlcN+PW1twJu3YbmMsQOtFh6JHncAhdrVg+tweAE=";
nativeBuildInputs = [ pkg-config (lib.getDev curl) ];
buildInputs = [ openssl curl ] ++ lib.optionals stdenv.isDarwin [
@ -55,6 +55,6 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/lu-zero/cargo-c";
changelog = "https://github.com/lu-zero/cargo-c/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ cpu ];
};
}