From 7cb7cac6a543c25918c2b8272668c353e10aaea0 Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Sun, 27 Nov 2022 21:21:54 +0300 Subject: [PATCH] kamid: fix cross-compilation --- pkgs/servers/ftp/kamid/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/servers/ftp/kamid/default.nix b/pkgs/servers/ftp/kamid/default.nix index bd787665acf6..625f391dae8f 100644 --- a/pkgs/servers/ftp/kamid/default.nix +++ b/pkgs/servers/ftp/kamid/default.nix @@ -28,11 +28,13 @@ stdenv.mkDerivation rec { libbsd ]; + makeFlags = [ "AR:=$(AR)" ]; + meta = with lib; { description = "A FREE, easy-to-use and portable implementation of a 9p file server daemon for UNIX-like systems"; homepage = "https://kamid.omarpolo.com"; license = licenses.isc; maintainers = with maintainers; [ heph2 ]; - platforms = platforms.unix; + platforms = platforms.linux; }; }