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.
This commit is contained in:
Russell O'Connor 2018-03-01 11:21:18 -05:00
parent 2d102cb408
commit 1759eec2e9

View File

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