From 1759eec2e923702933cb2b28ea45c7b6ef684209 Mon Sep 17 00:00:00 2001 From: Russell O'Connor Date: Thu, 1 Mar 2018 11:21:18 -0500 Subject: [PATCH] bitcoin: Disable darwin builds bitcoin requires hexdump to build. In theory hexdump is provided by the darwin.shell_cmds, but that packages doesn't seem to build at the moment. --- pkgs/applications/altcoins/bitcoin.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/altcoins/bitcoin.nix b/pkgs/applications/altcoins/bitcoin.nix index 9ccdd767019..0acd616eeaf 100644 --- a/pkgs/applications/altcoins/bitcoin.nix +++ b/pkgs/applications/altcoins/bitcoin.nix @@ -36,6 +36,7 @@ stdenv.mkDerivation rec{ homepage = http://www.bitcoin.org/; maintainers = with maintainers; [ roconnor AndersonTorres ]; license = licenses.mit; - platforms = platforms.unix; + # bitcoin needs hexdump to build, which doesn't seem to build on darwin at the moment. + platforms = platforms.linux; }; }