Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

mozwire: 0.7.0 -> 0.8.0

+9 -4
+9 -4
pkgs/tools/networking/mozwire/default.nix
··· 1 - { rustPlatform, lib, stdenv, fetchFromGitHub, Security }: 1 + { rustPlatform 2 + , lib 3 + , stdenv 4 + , fetchFromGitHub 5 + , Security 6 + }: 2 7 3 8 rustPlatform.buildRustPackage rec { 4 9 pname = "MozWire"; 5 - version = "0.7.0"; 10 + version = "0.8.0"; 6 11 7 12 src = fetchFromGitHub { 8 13 owner = "NilsIrl"; 9 14 repo = pname; 10 15 rev = "v${version}"; 11 - sha256 = "01bj3c34x9ywxygsz4rdyw5gc9cz8x6zzl5fd7db8qy8bx2lhlr9"; 16 + hash = "sha256-vC8HmwJCHMKQUsYBwRmr88tmZxPKNvI6hxlcjG2AV3Q="; 12 17 }; 13 18 14 19 buildInputs = lib.optionals stdenv.isDarwin [ Security ]; 15 20 16 - cargoSha256 = "0q27p2hyw6c1fh5x8kwsrw8a1hk6z90z0z3w86ga8ryz53xg4vdi"; 21 + cargoHash = "sha256-9qXoMugmL6B9vC/yrMJxZ5p792ZJmrTzk/khRVTkHf4="; 17 22 18 23 meta = with lib; { 19 24 description = "MozillaVPN configuration manager giving Linux, macOS users (among others), access to MozillaVPN";