Unverified Commit 0d0d0787 authored by h7x4's avatar h7x4 Committed by GitHub
Browse files

cargo-info: 0.7.6 -> 0.7.7 (#345578)

parents b8f17b32 7b8ecbbc
Loading
Loading
Loading
Loading
+4 −7
Original line number Diff line number Diff line
@@ -9,19 +9,16 @@

rustPlatform.buildRustPackage rec {
  pname = "cargo-info";
  version = "0.7.6";
  version = "0.7.7";

  src = fetchFromGitLab {
    owner = "imp";
    repo = "cargo-info";
    rev = version;
    hash = "sha256-02Zkp7Vc1M5iZsG4iJL30S73T2HHg3lqrPJ9mW3FOuk=";
    hash = "sha256-MrkYGUd1jsAqIVYWe7YDZaq7NPv/mHQqLS7GFrYYIo8=";
  };

  # upstream uses `#![deny(warnings)]` which breaks our build
  RUSTFLAGS = "--cap-lints allow";

  cargoHash = "sha256-zp7qklME28HNGomAcQgrEi7W6zQ1QCJc4FjxtnKySUE=";
  cargoHash = "sha256-yxftWLGIFt4QO1XKXpBcKnTEiL0x9RKGRCMEO/H1PEU=";

  nativeBuildInputs = [
    pkg-config
@@ -30,7 +27,7 @@ rustPlatform.buildRustPackage rec {
  buildInputs = [
    openssl
  ] ++ lib.optionals stdenv.hostPlatform.isDarwin [
    darwin.apple_sdk.frameworks.Security
    darwin.apple_sdk.frameworks.SystemConfiguration
  ];

  meta = with lib; {