Unverified Commit 42f73afb authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

zenith: 0.14.2 -> 0.14.3 (#478829)

parents 61e13bbc ef89e47b
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  rustPlatform,
  fetchFromGitHub,
  nvidiaSupport ? false,
@@ -9,13 +8,13 @@

rustPlatform.buildRustPackage rec {
  pname = "zenith";
  version = "0.14.2";
  version = "0.14.3";

  src = fetchFromGitHub {
    owner = "bvaisvil";
    repo = "zenith";
    rev = version;
    hash = "sha256-kMjDbWhey3SoT4hlEz2mEoSIICfI+X03PdBgTs5yxuI=";
    hash = "sha256-D/o8JmKLiT8LhmJ6q2h7f5vJQNXAN5aCislxwDw9yqo=";
  };

  # remove cargo config so it can find the linker on aarch64-linux
@@ -23,7 +22,7 @@ rustPlatform.buildRustPackage rec {
    rm .cargo/config
  '';

  cargoHash = "sha256-M+I7+mcXn2UM340loy4OS6z+uZMxwiO/JwD0KjHvcFw=";
  cargoHash = "sha256-/SRZWbsAvV4rgEsVj5WRgc5KJZm+JvIs1QTgaK/+l+g=";

  nativeBuildInputs = [ rustPlatform.bindgenHook ] ++ lib.optional nvidiaSupport makeWrapper;