From 976264d57030c9c86501d959ccc7b37a0bc60632 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Tue, 4 Jun 2019 01:38:47 -0500 Subject: [PATCH] txr: limit to linux for now, dunno why Darwin build is problematic --- pkgs/tools/misc/txr/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/misc/txr/default.nix b/pkgs/tools/misc/txr/default.nix index cf5588209a4..4618324a75a 100644 --- a/pkgs/tools/misc/txr/default.nix +++ b/pkgs/tools/misc/txr/default.nix @@ -37,5 +37,6 @@ stdenv.mkDerivation rec { license = licenses.bsd2; homepage = http://nongnu.org/txr; maintainers = with stdenv.lib.maintainers; [ dtzWill ]; + platforms = platforms.linux; # Darwin fails although it should work AFAIK }; }