Merge pull request #6154 from tel/build-file-on-darwin

Platforms for "file" derivation to include darwin
This commit is contained in:
Daniel Peebles 2015-02-05 00:58:13 -05:00
commit ab49ac71b8

View file

@ -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;
};
}