From 22e75d4445d53eda9e25e1bbb40d8cef155c12cb Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Wed, 10 Jun 2020 00:19:41 +0300 Subject: [PATCH] clex: enable on darwin --- pkgs/tools/misc/clex/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/clex/default.nix b/pkgs/tools/misc/clex/default.nix index 5e5bf4166ff..7a6a78af59a 100644 --- a/pkgs/tools/misc/clex/default.nix +++ b/pkgs/tools/misc/clex/default.nix @@ -24,6 +24,6 @@ stdenv.mkDerivation rec { ''; homepage = "http://www.clex.sk"; license = licenses.gpl2Plus; - platforms = platforms.linux; + platforms = with platforms; linux ++ darwin; }; }