about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorNikolay Korotkiy <sikmir@gmail.com>2020-06-10 00:19:41 +0300
committerNikolay Korotkiy <sikmir@gmail.com>2020-06-10 00:19:41 +0300
commit22e75d4445d53eda9e25e1bbb40d8cef155c12cb (patch)
treed1d0033ca70727e65467f371612ec65cb45b7b13 /pkgs/tools
parentf0bee9760fa194c2a6c5e7a636d2aa63b99242da (diff)
downloadnixlib-22e75d4445d53eda9e25e1bbb40d8cef155c12cb.tar
nixlib-22e75d4445d53eda9e25e1bbb40d8cef155c12cb.tar.gz
nixlib-22e75d4445d53eda9e25e1bbb40d8cef155c12cb.tar.bz2
nixlib-22e75d4445d53eda9e25e1bbb40d8cef155c12cb.tar.lz
nixlib-22e75d4445d53eda9e25e1bbb40d8cef155c12cb.tar.xz
nixlib-22e75d4445d53eda9e25e1bbb40d8cef155c12cb.tar.zst
nixlib-22e75d4445d53eda9e25e1bbb40d8cef155c12cb.zip
clex: enable on darwin
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/clex/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/misc/clex/default.nix b/pkgs/tools/misc/clex/default.nix
index 5e5bf4166ff9..7a6a78af59a9 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;
   };
 }