2022-11-04T00:43:25 cargo-c 0.9.2 -> 0.9.13 https://repology.org/metapackage/cargo-c/versions 2022-11-04T00:43:27 attrpath: cargo-c 2022-11-04T00:43:28 Checking auto update branch... 2022-11-04T00:43:28 No auto update branch exists 2022-11-04T00:43:28 Old version 0.9.2" not present in master derivation file with contents: { lib , rustPlatform , fetchCrate , pkg-config , curl , openssl , stdenv , CoreFoundation , libiconv , Security }: rustPlatform.buildRustPackage rec { pname = "cargo-c"; version = "0.9.13"; src = fetchCrate { inherit pname; # this version may need to be updated along with package version version = "${version}+cargo-0.65"; sha256 = "sha256-f/p+ZIvDe9JQ8GM82SEud7sRTlimNs/ADPevfdkhsfg="; }; cargoSha256 = "sha256-JrlEWgKbTqQG/JYFqBR53eB58fa29c/+vIdSNGoS5Y0="; nativeBuildInputs = [ pkg-config (lib.getDev curl) ]; buildInputs = [ openssl curl ] ++ lib.optionals stdenv.isDarwin [ CoreFoundation libiconv Security ]; # Ensure that we are avoiding build of the curl vendored in curl-sys doInstallCheck = stdenv.hostPlatform.libc == "glibc"; installCheckPhase = '' runHook preInstallCheck ldd "$out/bin/cargo-cbuild" | grep libcurl.so runHook postInstallCheck ''; meta = with lib; { description = "A cargo subcommand to build and install C-ABI compatibile dynamic and static libraries"; longDescription = '' Cargo C-ABI helpers. A cargo applet that produces and installs a correct pkg-config file, a static library and a dynamic library, and a C header to be used by any C (and C-compatible) software. ''; 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; [ ]; }; }