From 8bff4b7e405836f7451e3b4792a2728a22ef2803 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20=C5=BDlender?= Date: Sat, 16 Sep 2023 23:44:41 +0200 Subject: [PATCH] entr: fix cross compilation --- pkgs/tools/misc/entr/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/tools/misc/entr/default.nix b/pkgs/tools/misc/entr/default.nix index a44a30a6dd7..b46b9403708 100644 --- a/pkgs/tools/misc/entr/default.nix +++ b/pkgs/tools/misc/entr/default.nix @@ -18,6 +18,8 @@ stdenv.mkDerivation rec { checkTarget = "test"; installFlags = [ "PREFIX=$(out)" ]; + TARGET_OS = stdenv.hostPlatform.uname.system; + meta = with lib; { homepage = "https://eradman.com/entrproject/"; description = "Run arbitrary commands when files change";