about summary refs log tree commit diff
path: root/pkgs/applications/altcoins
diff options
context:
space:
mode:
authorRussell O'Connor <roconnor@theorem.ca>2018-03-01 11:21:18 -0500
committerRussell O'Connor <roconnor@theorem.ca>2018-03-01 11:21:18 -0500
commit1759eec2e923702933cb2b28ea45c7b6ef684209 (patch)
tree9d0297a26e9de7f4b489e43a9453beee63b6d933 /pkgs/applications/altcoins
parent2d102cb40831d5bca73c631b6eec47313ecb1317 (diff)
downloadnixlib-1759eec2e923702933cb2b28ea45c7b6ef684209.tar
nixlib-1759eec2e923702933cb2b28ea45c7b6ef684209.tar.gz
nixlib-1759eec2e923702933cb2b28ea45c7b6ef684209.tar.bz2
nixlib-1759eec2e923702933cb2b28ea45c7b6ef684209.tar.lz
nixlib-1759eec2e923702933cb2b28ea45c7b6ef684209.tar.xz
nixlib-1759eec2e923702933cb2b28ea45c7b6ef684209.tar.zst
nixlib-1759eec2e923702933cb2b28ea45c7b6ef684209.zip
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.
Diffstat (limited to 'pkgs/applications/altcoins')
-rw-r--r--pkgs/applications/altcoins/bitcoin.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/altcoins/bitcoin.nix b/pkgs/applications/altcoins/bitcoin.nix
index 9ccdd7670193..0acd616eeaff 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;
   };
 }