summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authormarkuskowa <markus.kowalewski@gmail.com>2018-12-10 17:35:12 +0100
committerGitHub <noreply@github.com>2018-12-10 17:35:12 +0100
commit49996e17ae9daf3c3447fb5e8500dc78b4fde995 (patch)
tree5478901a9120e238a5a757c485ee4f7281a9cd4e /pkgs
parentc9ead109ca3c3ee3ae9782e315bb9c89acecaab4 (diff)
parent8ded84ec2ad29828a59e8f90d88163250771c581 (diff)
downloadnixpkgs-49996e17ae9daf3c3447fb5e8500dc78b4fde995.tar
nixpkgs-49996e17ae9daf3c3447fb5e8500dc78b4fde995.tar.gz
nixpkgs-49996e17ae9daf3c3447fb5e8500dc78b4fde995.tar.bz2
nixpkgs-49996e17ae9daf3c3447fb5e8500dc78b4fde995.tar.lz
nixpkgs-49996e17ae9daf3c3447fb5e8500dc78b4fde995.tar.xz
nixpkgs-49996e17ae9daf3c3447fb5e8500dc78b4fde995.tar.zst
nixpkgs-49996e17ae9daf3c3447fb5e8500dc78b4fde995.zip
Merge pull request #51812 from samueldr/fix/altcoins-and-boost165
Fixes three altcoins packages to use boost165
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/altcoins/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/altcoins/default.nix b/pkgs/applications/altcoins/default.nix
index 4b7571b419f..c7a81b6b11f 100644
--- a/pkgs/applications/altcoins/default.nix
+++ b/pkgs/applications/altcoins/default.nix
@@ -45,7 +45,7 @@ rec {
   dcrd = callPackage ./dcrd.nix { };
   dcrwallet = callPackage ./dcrwallet.nix { };
 
-  dero = callPackage ./dero.nix { };
+  dero = callPackage ./dero.nix { boost = boost165; };
 
   dogecoin  = callPackage ./dogecoin.nix { boost = boost165; withGui = true; };
   dogecoind = callPackage ./dogecoin.nix { boost = boost165; withGui = false; };
@@ -65,7 +65,7 @@ rec {
   };
   litecoind = litecoin.override { withGui = false; };
 
-  masari = callPackage ./masari.nix { };
+  masari = callPackage ./masari.nix { boost = boost165; };
 
   memorycoin  = callPackage ./memorycoin.nix { boost = boost165; withGui = true; };
   memorycoind = callPackage ./memorycoin.nix { boost = boost165; withGui = false; };
@@ -79,7 +79,7 @@ rec {
 
   stellar-core = callPackage ./stellar-core.nix { };
 
-  sumokoin = callPackage ./sumokoin.nix { };
+  sumokoin = callPackage ./sumokoin.nix { boost = boost165; };
 
   wownero = callPackage ./wownero.nix {
     inherit (darwin.apple_sdk.frameworks) CoreData IOKit PCSC;