From fbc3c696643ee55a615da2d06e131d84d428c369 Mon Sep 17 00:00:00 2001 From: Andrew Cann Date: Wed, 30 Aug 2017 14:57:45 +0800 Subject: [PATCH] hivemind: Fix boost version dependency --- pkgs/applications/altcoins/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/altcoins/default.nix b/pkgs/applications/altcoins/default.nix index 81b459e8308f..a67e5559a53b 100644 --- a/pkgs/applications/altcoins/default.nix +++ b/pkgs/applications/altcoins/default.nix @@ -26,8 +26,8 @@ rec { go-ethereum = callPackage ./go-ethereum.nix { }; go-ethereum-classic = callPackage ./go-ethereum-classic { }; - hivemind = callPackage ./hivemind.nix { withGui = true; }; - hivemindd = callPackage ./hivemind.nix { withGui = false; }; + hivemind = callPackage ./hivemind.nix { withGui = true; boost = pkgs.boost162; }; + hivemindd = callPackage ./hivemind.nix { withGui = false; boost = pkgs.boost162; }; litecoin = callPackage ./litecoin.nix { withGui = true; }; litecoind = callPackage ./litecoin.nix { withGui = false; };