Merge pull request #36560 from Lassulus/bitcoin-classic
bitcoin-classic: 1.3.6 -> 1.3.8
This commit is contained in:
commit
f99e03e9d7
@ -7,13 +7,13 @@ with stdenv.lib;
|
|||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
name = "bitcoin" + (toString (optional (!withGui) "d")) + "-classic-" + version;
|
name = "bitcoin" + (toString (optional (!withGui) "d")) + "-classic-" + version;
|
||||||
version = "1.3.6";
|
version = "1.3.8";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "bitcoinclassic";
|
owner = "bitcoinclassic";
|
||||||
repo = "bitcoinclassic";
|
repo = "bitcoinclassic";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "129gkg035gv7zmc463jl2spvdh0fl4q8v4jdaslfnp34hbwi1p07";
|
sha256 = "06ij9v7zbdnhxq9429nnxiw655cp8idldj18l7fmj94gqx07n5vh";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./fix-bitcoin-qt-build.patch ];
|
patches = [ ./fix-bitcoin-qt-build.patch ];
|
||||||
|
@ -13,8 +13,8 @@ rec {
|
|||||||
bitcoin-unlimited = callPackage ./bitcoin-unlimited.nix { withGui = true; };
|
bitcoin-unlimited = callPackage ./bitcoin-unlimited.nix { withGui = true; };
|
||||||
bitcoind-unlimited = callPackage ./bitcoin-unlimited.nix { withGui = false; };
|
bitcoind-unlimited = callPackage ./bitcoin-unlimited.nix { withGui = false; };
|
||||||
|
|
||||||
bitcoin-classic = libsForQt5.callPackage ./bitcoin-classic.nix { withGui = true; };
|
bitcoin-classic = libsForQt5.callPackage ./bitcoin-classic.nix { boost = boost165; withGui = true; };
|
||||||
bitcoind-classic = callPackage ./bitcoin-classic.nix { withGui = false; };
|
bitcoind-classic = callPackage ./bitcoin-classic.nix { boost = boost165; withGui = false; };
|
||||||
|
|
||||||
bitcoin-xt = callPackage ./bitcoin-xt.nix { boost = boost165; withGui = true; };
|
bitcoin-xt = callPackage ./bitcoin-xt.nix { boost = boost165; withGui = true; };
|
||||||
bitcoind-xt = callPackage ./bitcoin-xt.nix { boost = boost165; withGui = false; };
|
bitcoind-xt = callPackage ./bitcoin-xt.nix { boost = boost165; withGui = false; };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user