From 39902c5ea5f383a236bcc673f775752beee01e3f Mon Sep 17 00:00:00 2001 From: sstent Date: Tue, 21 Feb 2023 13:22:56 -0500 Subject: [PATCH] sync --- pkgs/npiperelay/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/npiperelay/default.nix b/pkgs/npiperelay/default.nix index a9e316a..a3de230 100644 --- a/pkgs/npiperelay/default.nix +++ b/pkgs/npiperelay/default.nix @@ -5,8 +5,8 @@ let srcs = { x86_64-linux = fetchurl { url = - "https://github.com/rupor-github/wsl-ssh-agent/releases/download/v1.5.2/wsl-ssh-agent.zip"; - sha256 = "sha256-OeZ2Wmg2SEcHwm8zclYTgLHmGUktyRv46+7Deq7o89c="; + "https://github.com/rupor-github/wsl-ssh-agent/releases/download/v1.6.3/wsl-ssh-agent.zip"; + sha256 = "sha256-A1ykYteoNZi6QACkYHSxa1hY55GfqgClIFZFX2GuLMU="; }; # aarch64-linux = fetchurl { @@ -34,7 +34,7 @@ in stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/bin - cp $src $out/bin/npiperelay.exe + cp npiperelay.exe $out/bin/npiperelay.exe chmod +x $out/bin/npiperelay.exe '';