From de6977ffe3f987cc6149af3546765c24e2bf3894 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Tue, 28 Jun 2016 04:38:25 +0000 Subject: [PATCH] unifdef: set platforms to unix, not linux Apparently, Darwin evaluation is somehow busted without this, although I can't verify it. Reported by @matthewbauer on IRC. I'll take the blame if this somehow makes life worse. /cc @vrthra as maintainer Signed-off-by: Austin Seipp --- pkgs/development/tools/misc/unifdef/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/misc/unifdef/default.nix b/pkgs/development/tools/misc/unifdef/default.nix index 9ed8e2d34f36..6637c0e09bfb 100644 --- a/pkgs/development/tools/misc/unifdef/default.nix +++ b/pkgs/development/tools/misc/unifdef/default.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { homepage = "http://dotat.at/prog/unifdef/"; description = "Selectively remove C preprocessor conditionals"; license = licenses.bsd2; - platforms = platforms.linux; + platforms = platforms.unix; maintainers = [ maintainers.vrthra ]; }; }