tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
altcoins: remove obsolete boost override
lassulus
8 years ago
077dd9fc
bdb120c2
+5
-7
2 changed files
expand all
collapse all
unified
split
pkgs
applications
altcoins
default.nix
top-level
all-packages.nix
+4
-4
pkgs/applications/altcoins/default.nix
···
8
8
bitcoin-unlimited = callPackage ./bitcoin-unlimited.nix { withGui = true; };
9
9
bitcoind-unlimited = callPackage ./bitcoin-unlimited.nix { withGui = false; };
10
10
11
11
-
bitcoin-classic = callPackage ./bitcoin-classic.nix { withGui = true; boost = boost162; };
12
12
-
bitcoind-classic = callPackage ./bitcoin-classic.nix { withGui = false; boost = boost162; };
11
11
+
bitcoin-classic = callPackage ./bitcoin-classic.nix { withGui = true; };
12
12
+
bitcoind-classic = callPackage ./bitcoin-classic.nix { withGui = false; };
13
13
14
14
bitcoin-xt = callPackage ./bitcoin-xt.nix { withGui = true; };
15
15
bitcoind-xt = callPackage ./bitcoin-xt.nix { withGui = false; };
···
26
26
go-ethereum = callPackage ./go-ethereum.nix { };
27
27
go-ethereum-classic = callPackage ./go-ethereum-classic { };
28
28
29
29
-
hivemind = callPackage ./hivemind.nix { withGui = true; boost = boost162; };
30
30
-
hivemindd = callPackage ./hivemind.nix { withGui = false; boost = boost162; };
29
29
+
hivemind = callPackage ./hivemind.nix { withGui = true; };
30
30
+
hivemindd = callPackage ./hivemind.nix { withGui = false; };
31
31
32
32
litecoin = callPackage ./litecoin.nix { withGui = true; };
33
33
litecoind = callPackage ./litecoin.nix { withGui = false; };
+1
-3
pkgs/top-level/all-packages.nix
···
13513
13513
13514
13514
schismtracker = callPackage ../applications/audio/schismtracker { };
13515
13515
13516
13516
-
altcoins = recurseIntoAttrs ( callPackage ../applications/altcoins {
13517
13517
-
callPackage = newScope { boost = boost155; };
13518
13518
-
} );
13516
13516
+
altcoins = recurseIntoAttrs ( callPackage ../applications/altcoins { } );
13519
13517
bitcoin = altcoins.bitcoin;
13520
13518
bitcoin-xt = altcoins.bitcoin-xt;
13521
13519