Unverified Commit 16a93552 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

tun2proxy: 0.5.4 -> 0.6.0 (#351694)

parents e268a38c 22b78d5f
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -3,18 +3,19 @@
  rustPlatform,
  fetchFromGitHub,
}:

rustPlatform.buildRustPackage rec {
  pname = "tun2proxy";
  version = "0.5.4";
  version = "0.6.0";

  src = fetchFromGitHub {
    owner = "tun2proxy";
    repo = "tun2proxy";
    rev = "v${version}";
    hash = "sha256-EeSXEPg4TxbjQXoM2jx8T9+VOT7VndBnxhy7pwwQ8Kk=";
    rev = "refs/tags/v${version}";
    hash = "sha256-LY7vVD85GVFqARYOBDeb4fS6rL2PwPXYXIAJtwm2goo=";
  };

  cargoHash = "sha256-WwCUSnXSlSrO+YfqpZlC9WWsX/pM6ixYlqU1pZY4e5o=";
  cargoHash = "sha256-o/zQjWR9qNs0XVL/dcRiMHgj+8Xvl6vVl/Yw5iLhroI=";

  cargoPatches = [
    ./Cargo.lock.patch
@@ -23,6 +24,7 @@ rustPlatform.buildRustPackage rec {
  meta = {
    homepage = "https://github.com/tun2proxy/tun2proxy";
    description = "Tunnel (TUN) interface for SOCKS and HTTP proxies";
    changelog = "https://github.com/tun2proxy/tun2proxy/releases/tag/v${version}";
    license = lib.licenses.mit;
    platforms = lib.platforms.linux;
    mainProgram = "tun2proxy-bin";