Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
56 lines
1.1 KiB
Nix
56 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
ocamlPackages,
|
|
pkg-config,
|
|
libdrm,
|
|
unstableGitUpdater,
|
|
}:
|
|
|
|
ocamlPackages.buildDunePackage {
|
|
pname = "wayland-proxy-virtwl";
|
|
version = "0-unstable-2025-06-22";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "talex5";
|
|
repo = "wayland-proxy-virtwl";
|
|
rev = "513f8d791f405154bb4053fe29861c03dc1302f7";
|
|
sha256 = "sha256-OBeq1p5vIoVvGPyOB03qtNo4GstYwr4MkvlFcpvI4ZI=";
|
|
};
|
|
|
|
minimalOCamlVersion = "5.0";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
libdrm
|
|
]
|
|
++ (with ocamlPackages; [
|
|
dune-configurator
|
|
eio_main
|
|
ppx_cstruct
|
|
wayland
|
|
cmdliner
|
|
logs
|
|
ppx_cstruct
|
|
]);
|
|
|
|
doCheck = true;
|
|
|
|
passthru.updateScript = unstableGitUpdater { };
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/talex5/wayland-virtwl-proxy";
|
|
description = "Proxy Wayland connections across a VM boundary";
|
|
license = licenses.asl20;
|
|
mainProgram = "wayland-proxy-virtwl";
|
|
maintainers = [
|
|
maintainers.qyliss
|
|
maintainers.sternenseemann
|
|
];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|