Unverified Commit 29d1ba40 authored by misuzu's avatar misuzu Committed by GitHub
Browse files

zerofs 0.19.2 -> 0.20.0 (#468032)

parents 5c747981 51b317e0
Loading
Loading
Loading
Loading
+8 −5
Original line number Diff line number Diff line
{
  stdenv,
  lib,
  rustPlatform,
  cmake,
  fetchFromGitHub,
  nix-update-script,
  rust-jemalloc-sys,
  rustPlatform,
  versionCheckHook,
  nix-update-script,
}:

rustPlatform.buildRustPackage (finalAttrs: {
  pname = "zerofs";
  version = "0.19.2";
  version = "0.20.0";

  src = fetchFromGitHub {
    owner = "Barre";
    repo = "ZeroFS";
    tag = "v${finalAttrs.version}";
    hash = "sha256-okknSZXs82mfVgiKp5Gb+DuYogZ+g7hluF1ua+IAw8A=";
    hash = "sha256-8iPHIUESModoNFk8XEWjHZOGBOPxhOGM9gHaljWyqZg=";
  };

  sourceRoot = "${finalAttrs.src.name}/zerofs";

  cargoHash = "sha256-vhiI/t6WF+QZhkUpL893nQvvbRzgQkmXD7tuSeMAFyE=";
  cargoHash = "sha256-JZerQne+jW6xjH13dQe3g1dD07BP3j+1DSF+a/SgGXc=";

  nativeBuildInputs = [ cmake ];

  buildInputs = [ rust-jemalloc-sys ];