about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2021-03-28 20:16:06 +0200
committerGitHub <noreply@github.com>2021-03-28 20:16:06 +0200
commit1e5e8f49d6f4accf3856e551a856256b37fc3f06 (patch)
treeb6569cb7ec90192cc3a6cab3cef10536011ca0b3 /pkgs/applications
parent93ad9f20eda81a0b7f4f9eb9bbb654cbb2849d7c (diff)
waypipe: 0.7.2 -> 0.8.0 (#117879)
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/remote/waypipe/default.nix10
1 files changed, 2 insertions, 8 deletions
diff --git a/pkgs/applications/networking/remote/waypipe/default.nix b/pkgs/applications/networking/remote/waypipe/default.nix
index fcbad67038cec..7be719c18037b 100644
--- a/pkgs/applications/networking/remote/waypipe/default.nix
+++ b/pkgs/applications/networking/remote/waypipe/default.nix
@@ -1,26 +1,20 @@
 { lib, stdenv, fetchFromGitLab
 , meson, ninja, pkg-config, scdoc
-, openssh
 , mesa, lz4, zstd, ffmpeg, libva
 }:
 
 stdenv.mkDerivation rec {
   pname = "waypipe-unstable";
-  version = "0.7.2";
+  version = "0.8.0";
 
   src = fetchFromGitLab {
     domain = "gitlab.freedesktop.org";
     owner = "mstoeckl";
     repo = "waypipe";
     rev = "v${version}";
-    sha256 = "sha256-LtfrSEwZikOXp/fdyJ/+EylRx19zdsHMkrl1eEf1/aY=";
+    sha256 = "1qa47ljfvb1vv3h647xwn1j5j8gfmcmdfaz4j8ygnkvj36y87vnz";
   };
 
-  postPatch = ''
-    substituteInPlace src/waypipe.c \
-      --replace "/usr/bin/ssh" "${openssh}/bin/ssh"
-  '';
-
   nativeBuildInputs = [ meson ninja pkg-config scdoc ];
 
   buildInputs = [