Commit df7512c0 authored by Bazyli Cyran's avatar Bazyli Cyran
Browse files

timewall: 1.5.0 -> 2.0.0

parent a47b7965
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -3,25 +3,29 @@
  fetchFromGitHub,
  rustPlatform,
  installShellFiles,
  pkg-config,
  libheif,
  nix-update-script,
}:

rustPlatform.buildRustPackage rec {
  pname = "timewall";
  version = "1.5.0";
  version = "2.0.0";

  src = fetchFromGitHub {
    owner = "bcyran";
    repo = "timewall";
    rev = version;
    hash = "sha256-ohJDaN29FG/WqkcvpbukWS37RiX2pXdkKMzNh+3NqAU=";
    hash = "sha256-KUPy/mv6cV0BmvBcom+cCXk0s4Erz0hf5dg1i5QB0OE=";
  };

  useFetchCargoVendor = true;
  cargoHash = "sha256-Wg9bxzm5EJUazRUvFuPboQhZlqwWPuJ8UB9plgWUOO4=";
  cargoHash = "sha256-JOsCGHHbHx2yoFYdFWIYPHfgCfQjEtZA869+2OQ4jKA=";

  nativeBuildInputs = [ installShellFiles ];
  nativeBuildInputs = [
    pkg-config
    installShellFiles
  ];

  buildInputs = [ libheif ];