Skip to content

Commit

Permalink
cargo-public-api: 0.24.1 -> 0.26.0 (NixOS#206365)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasbeyer authored and adamcstephens committed Jan 25, 2023
1 parent 9e8c0c3 commit 3182262
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pkgs/development/tools/rust/cargo-public-api/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,24 @@
, pkg-config
, openssl
, stdenv
, darwin
}:

rustPlatform.buildRustPackage rec {
pname = "cargo-public-api";
version = "0.24.1";
version = "0.26.0";

src = fetchCrate {
inherit pname version;
sha256 = "sha256-xXwJ6MXnSgqIQ5IuqfDm/TUXgkppKCPG3TB7veza/H8=";
sha256 = "sha256-BiGVdWgDi+g+mxdM3+z5RN1pGJz9NIKVm8sTZf2ObCc=";
};

cargoSha256 = "sha256-1sSvK8oZspIxDcMAl2MyAQzuijAxj1kpiZf1QwwyYDs=";
cargoSha256 = "sha256-QvZBWo/u+WtIG5zlDVTC2+5bq/mqZftXU5m8oqN25GM=";

nativeBuildInputs = [ pkg-config ];

buildInputs = [ openssl ];
buildInputs = [ openssl ]
++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];

# Tests fail
doCheck = false;
Expand Down

0 comments on commit 3182262

Please sign in to comment.