From eeb94ed42c4133f62f3faa98992c4240a190e284 Mon Sep 17 00:00:00 2001 From: oxalica Date: Thu, 5 Jan 2023 10:59:02 +0800 Subject: [PATCH] unionfs-fuse: fix fuse path --- pkgs/tools/filesystems/unionfs-fuse/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/filesystems/unionfs-fuse/default.nix b/pkgs/tools/filesystems/unionfs-fuse/default.nix index 2518cfb24ba3..6f55dbe426a6 100644 --- a/pkgs/tools/filesystems/unionfs-fuse/default.nix +++ b/pkgs/tools/filesystems/unionfs-fuse/default.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { postPatch = lib.optionalString stdenv.hostPlatform.isDarwin '' substituteInPlace CMakeLists.txt \ - --replace '/usr/local/include/osxfuse/fuse' '${fuse}/include/fuse' + --replace '/usr/local/include/osxfuse/fuse' '${lib.getDev fuse}/include/fuse' ''; nativeBuildInputs = [ cmake ];