mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
altcoins.memorycoin: use boost165
This commit is contained in:
parent
6625fb8a67
commit
8684de926c
|
@ -46,8 +46,8 @@ rec {
|
|||
litecoin = callPackage ./litecoin.nix { withGui = true; };
|
||||
litecoind = callPackage ./litecoin.nix { withGui = false; };
|
||||
|
||||
memorycoin = callPackage ./memorycoin.nix { withGui = true; };
|
||||
memorycoind = callPackage ./memorycoin.nix { withGui = false; };
|
||||
memorycoin = callPackage ./memorycoin.nix { boost = boost165; withGui = true; };
|
||||
memorycoind = callPackage ./memorycoin.nix { boost = boost165; withGui = false; };
|
||||
|
||||
namecoin = callPackage ./namecoin.nix { withGui = true; };
|
||||
namecoind = callPackage ./namecoin.nix { withGui = false; };
|
||||
|
|
|
@ -51,6 +51,6 @@ stdenv.mkDerivation rec{
|
|||
homepage = http://www.bitcoin.org/;
|
||||
maintainers = with maintainers; [ AndersonTorres ];
|
||||
license = licenses.mit;
|
||||
platforms = platforms.unix;
|
||||
platforms = subtractLists [ "aarch64-linux" ] platforms.unix;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue