nixpkgs/pkgs/by-name/wa/waypipe/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
1.3 KiB
Nix
Raw Normal View History

{
lib,
stdenv,
fetchFromGitLab,
2020-07-07 17:56:15 +00:00
meson,
ninja,
pkg-config,
scdoc,
2020-06-13 02:31:01 +00:00
mesa,
lz4,
zstd,
ffmpeg,
libva,
wayland,
wayland-scanner,
}:
stdenv.mkDerivation rec {
pname = "waypipe";
version = "0.9.2";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "mstoeckl";
repo = "waypipe";
rev = "v${version}";
hash = "sha256-DW+WWwuav0lxnoV55L8RrX0enRURRnHMljtwEC0+9t4=";
};
strictDeps = true;
depsBuildBuild = [ pkg-config ];
nativeBuildInputs = [
meson
ninja
pkg-config
scdoc
wayland-scanner
];
buildInputs = [
# Optional dependencies:
2020-06-13 02:31:01 +00:00
mesa
lz4
zstd
ffmpeg
libva
wayland
];
meta = with lib; {
description = "Network proxy for Wayland clients (applications)";
longDescription = ''
waypipe is a proxy for Wayland clients. It forwards Wayland messages and
serializes changes to shared memory buffers over a single socket. This
makes application forwarding similar to ssh -X feasible.
'';
homepage = "https://mstoeckl.com/notes/gsoc/blog.html";
2020-07-07 17:56:15 +00:00
changelog = "https://gitlab.freedesktop.org/mstoeckl/waypipe/-/releases#v${version}";
license = licenses.mit;
platforms = platforms.linux;
2024-03-17 00:37:16 +00:00
maintainers = with maintainers; [ mic92 ];
2024-02-09 20:07:40 +00:00
mainProgram = "waypipe";
};
}