Skip to content

Commit

Permalink
Merge branch 'lars/fix/db-pruning' into release-candidate/2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
larskuhtz committed Aug 7, 2020
2 parents d0cb041 + 00f838c commit 2faee49
Show file tree
Hide file tree
Showing 8 changed files with 670 additions and 190 deletions.
3 changes: 2 additions & 1 deletion chainweb.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ library
, Chainweb.Chainweb.CutResources
, Chainweb.Chainweb.MinerResources
, Chainweb.Chainweb.PeerResources
, Chainweb.Chainweb.PruneChainDatabase
, Chainweb.Counter
, Chainweb.Crypto.MerkleLog
, Chainweb.Cut
Expand Down Expand Up @@ -317,7 +318,6 @@ library
, base64-bytestring >= 1.0 && < 1.1
-- due to change in error message that is inlined in pact
, binary >= 0.8
, bloomfilter >= 2.0
, bytes >= 0.15
, bytestring >= 0.10
, case-insensitive >= 1.2
Expand All @@ -329,6 +329,7 @@ library
, connection >=0.2
, containers >= 0.5
, cryptonite >= 0.25
, cuckoo >= 0.2
, data-default >=0.7
, data-dword >= 0.3
, deepseq >= 1.4
Expand Down
10 changes: 10 additions & 0 deletions project.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,16 @@ proj = kpkgs.rp.project ({ pkgs, hackGet, ... }: with pkgs.haskell.lib;
overrides = self: super: {
chainweb = enableCabalFlag (
justStaticExecutables (enableDWARFDebugging (convertCabalTestsAndBenchmarksToExecutables super.chainweb))) "use_systemd";
cuckoo = dontBenchmark (dontCheck (self.callHackageDirect {
pkg = "cuckoo";
ver = "0.2.1";
sha256 = "1dsac9qc90aagcgvznzfjd4wl8wgxhq1m8f5h556ys72nkm1ablx";
} {}));
quickcheck-classes-base = dontCheck (self.callHackageDirect {
pkg = "quickcheck-classes-base";
ver = "0.6.0.0";
sha256 = "1mmhfp95wqg6i5gzap4b4g87zgbj46nnpir56hqah97igsbvis70";
} {});
};

packages = {
Expand Down
Loading

0 comments on commit 2faee49

Please sign in to comment.