From 052dca32e2cb8d06fbb4db11c708f7b8a3711831 Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Thu, 6 Oct 2022 17:56:42 -0700 Subject: [PATCH] mozwire: 0.7.0 -> 0.8.0 --- pkgs/tools/networking/mozwire/default.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/networking/mozwire/default.nix b/pkgs/tools/networking/mozwire/default.nix index afccd8376d8..f8d615b525e 100644 --- a/pkgs/tools/networking/mozwire/default.nix +++ b/pkgs/tools/networking/mozwire/default.nix @@ -1,19 +1,24 @@ -{ rustPlatform, lib, stdenv, fetchFromGitHub, Security }: +{ rustPlatform +, lib +, stdenv +, fetchFromGitHub +, Security +}: rustPlatform.buildRustPackage rec { pname = "MozWire"; - version = "0.7.0"; + version = "0.8.0"; src = fetchFromGitHub { owner = "NilsIrl"; repo = pname; rev = "v${version}"; - sha256 = "01bj3c34x9ywxygsz4rdyw5gc9cz8x6zzl5fd7db8qy8bx2lhlr9"; + hash = "sha256-vC8HmwJCHMKQUsYBwRmr88tmZxPKNvI6hxlcjG2AV3Q="; }; buildInputs = lib.optionals stdenv.isDarwin [ Security ]; - cargoSha256 = "0q27p2hyw6c1fh5x8kwsrw8a1hk6z90z0z3w86ga8ryz53xg4vdi"; + cargoHash = "sha256-9qXoMugmL6B9vC/yrMJxZ5p792ZJmrTzk/khRVTkHf4="; meta = with lib; { description = "MozillaVPN configuration manager giving Linux, macOS users (among others), access to MozillaVPN";