Unverified Commit 5f05e02d authored by R. RyanTM's avatar R. RyanTM Committed by Nikolay Korotkiy
Browse files

reproxy: 1.4.0 -> 1.5.0

parent c4b04018
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -2,21 +2,24 @@
  lib,
  buildGoModule,
  fetchFromGitHub,
  installShellFiles,
}:

buildGoModule (finalAttrs: {
  pname = "reproxy";
  version = "1.4.0";
  version = "1.5.0";

  src = fetchFromGitHub {
    owner = "umputun";
    repo = "reproxy";
    tag = "v${finalAttrs.version}";
    hash = "sha256-pnmm/JEMcQ5UQUwUqGdzC/BphrH4tBz79Bq3c13GqbA=";
    hash = "sha256-nJAE2oEoIzuRFRlgypRROXZYfQy3y2m14QbBUUGQBSg=";
  };

  vendorHash = null;

  nativeBuildInputs = [ installShellFiles ];

  ldflags = [
    "-s"
    "-w"
@@ -30,6 +33,7 @@ buildGoModule (finalAttrs: {

  postInstall = ''
    mv $out/bin/{app,reproxy}
    installShellCompletion completions/*
  '';

  __darwinAllowLocalNetworking = true;