bitcoin-classic: 1.2.5 -> 1.3.6
This commit is contained in:
@@ -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.2.5";
|
version = "1.3.6";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "bitcoinclassic";
|
owner = "bitcoinclassic";
|
||||||
repo = "bitcoinclassic";
|
repo = "bitcoinclassic";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "00spils0gv8krx2nyxrf6j1dl81wmxk8xjkqc22cv7nsdnakzrvm";
|
sha256 = "129gkg035gv7zmc463jl2spvdh0fl4q8v4jdaslfnp34hbwi1p07";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
||||||
|
|||||||
@@ -8,8 +8,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 = callPackage ./bitcoin-classic.nix { withGui = true; };
|
bitcoin-classic = callPackage ./bitcoin-classic.nix { withGui = true; boost = pkgs.boost; };
|
||||||
bitcoind-classic = callPackage ./bitcoin-classic.nix { withGui = false; };
|
bitcoind-classic = callPackage ./bitcoin-classic.nix { withGui = false; boost = pkgs.boost; };
|
||||||
|
|
||||||
bitcoin-xt = callPackage ./bitcoin-xt.nix { withGui = true; };
|
bitcoin-xt = callPackage ./bitcoin-xt.nix { withGui = true; };
|
||||||
bitcoind-xt = callPackage ./bitcoin-xt.nix { withGui = false; };
|
bitcoind-xt = callPackage ./bitcoin-xt.nix { withGui = false; };
|
||||||
|
|||||||
Reference in New Issue
Block a user