From fa9a186ec3989c86a0790ce0d952547c39521537 Mon Sep 17 00:00:00 2001 From: Anthony Roussel Date: Sat, 10 Sep 2022 15:18:21 +0200 Subject: [PATCH] wdomirror: fix build --- pkgs/tools/wayland/wdomirror/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/tools/wayland/wdomirror/default.nix b/pkgs/tools/wayland/wdomirror/default.nix index 5d69ce66f6d..10facbca50c 100644 --- a/pkgs/tools/wayland/wdomirror/default.nix +++ b/pkgs/tools/wayland/wdomirror/default.nix @@ -40,8 +40,14 @@ stdenv.mkDerivation { runHook postInstall ''; + postPatch = '' + substituteInPlace meson.build \ + --replace "werror=true" "werror=false" + ''; + meta = with lib; { description = "Mirrors an output of a wlroots compositor to a window"; + homepage = "https://github.com/progandy/wdomirror"; license = licenses.mit; platforms = platforms.unix; maintainers = with maintainers; [ jpas ];