From d6dd4fd9d06ef3124bccdaafe0599fb6ff80ad26 Mon Sep 17 00:00:00 2001 From: Joseph Abrahamson Date: Wed, 4 Feb 2015 15:41:14 -0500 Subject: [PATCH] Platforms for file derivation to include darwin --- pkgs/tools/misc/file/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/file/default.nix b/pkgs/tools/misc/file/default.nix index 015820916c7..f0a27c8bcbf 100644 --- a/pkgs/tools/misc/file/default.nix +++ b/pkgs/tools/misc/file/default.nix @@ -13,6 +13,6 @@ stdenv.mkDerivation rec { meta = { homepage = "http://darwinsys.com/file"; description = "A program that shows the type of files"; - platforms = with stdenv.lib.platforms; allBut darwin; + platforms = stdenv.lib.platforms.all; }; }