Unverified Commit abad4bf2 authored by Nikolay Korotkiy's avatar Nikolay Korotkiy Committed by GitHub
Browse files

frp: 0.64.0 -> 0.65.0 (#446051)

parents 720b52f5 c67a2537
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line
@@ -5,18 +5,18 @@
  nixosTests,
}:

buildGoModule rec {
buildGoModule (finalAttrs: {
  pname = "frp";
  version = "0.64.0";
  version = "0.65.0";

  src = fetchFromGitHub {
    owner = "fatedier";
    repo = "frp";
    rev = "v${version}";
    hash = "sha256-DnuywtyBBIvyB29HYFSRiBcY+jNY8rK54roJMQdQNZA=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-H7iFrp+XevT4+3b72EkBTJKMGSPGCmRbi56RQIOXaMg=";
  };

  vendorHash = "sha256-bSYwMevCTusvkcBFdWvYw+3E1H4GshoaiX8ilEWKmQk=";
  vendorHash = "sha256-lwLBGVN9wQLT8J5EyGVf1gsC89GQms2NXh9YTfjYKhY=";

  doCheck = false;

@@ -29,7 +29,7 @@ buildGoModule rec {
    frp = nixosTests.frp;
  };

  meta = with lib; {
  meta = {
    description = "Fast reverse proxy";
    longDescription = ''
      frp is a fast reverse proxy to help you expose a local server behind a
@@ -38,7 +38,7 @@ buildGoModule rec {
      internal services by domain name. frp also has a P2P connect mode.
    '';
    homepage = "https://github.com/fatedier/frp";
    license = licenses.asl20;
    maintainers = with maintainers; [ Br1ght0ne ];
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ Br1ght0ne ];
  };
}
})