From 85afe9737c7182185cfdaaeedefb2d10a3641aa6 Mon Sep 17 00:00:00 2001 From: Travis Davis <52011418+TravisDavis-ops@users.noreply.github.com> Date: Wed, 29 Jun 2022 12:57:35 -0500 Subject: [PATCH] sov: fix default config location (#178882) * sov: fix default config location * Update pkgs/tools/wayland/sov/default.nix Co-authored-by: Sandro Co-authored-by: Sandro --- pkgs/tools/wayland/sov/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/tools/wayland/sov/default.nix b/pkgs/tools/wayland/sov/default.nix index 260311c07a76..a9b39e186b73 100644 --- a/pkgs/tools/wayland/sov/default.nix +++ b/pkgs/tools/wayland/sov/default.nix @@ -14,6 +14,9 @@ stdenv.mkDerivation rec { sha256 = "sha256-6FdZ3UToeIAARxrOqSWBX+ALrlr4s2J0bj9c3l9ZTyQ="; }; + postPatch = '' + substituteInPlace src/sov/main.c --replace '/usr' $out + ''; nativeBuildInputs = [ meson pkg-config wayland-scanner ninja ]; buildInputs = [ wayland wayland-protocols freetype ];