Merge pull request #25066 from matthewbauer/less-darwin-eval-errors

Add Darwin as platform to various "broken" packages that actually build
This commit is contained in:
Daiderd Jordan
2017-04-24 08:14:21 +02:00
committed by GitHub
33 changed files with 76 additions and 50 deletions
+2 -2
View File
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
preBuild = ''
substituteInPlace Makefile --replace ' -o root' ' ' --replace 111 755
makeFlags="DESTROOT=$out"
makeFlags="DESTROOT=$out CC=cc"
# We want to ignore the $glibc/include/paths.h definition of
# sendmail path.
@@ -35,6 +35,6 @@ stdenv.mkDerivation {
meta = {
description = "Daemon for running commands at specific times (Vixie Cron)";
platforms = stdenv.lib.platforms.linux;
platforms = with stdenv.lib.platforms; linux ++ darwin;
};
}