From 222bb5d7df69b468592dc345b250323396fdaa93 Mon Sep 17 00:00:00 2001 From: Neil Mayhew Date: Wed, 4 Dec 2024 11:48:29 -0700 Subject: [PATCH] Add srp's --- cabal.project | 86 +++++++++++++++++++++++++++++++++++++++++++++++++ nix/haskell.nix | 2 +- 2 files changed, 87 insertions(+), 1 deletion(-) diff --git a/cabal.project b/cabal.project index 7f32460f622..5f4b8a01dc8 100644 --- a/cabal.project +++ b/cabal.project @@ -68,3 +68,89 @@ allow-newer: -- IMPORTANT -- Do NOT add more source-repository-package stanzas here unless they are strictly -- temporary! Please read the section in CONTRIBUTING about updating dependencies. + +source-repository-package + type: git + location: https://github.com/IntersectMBO/cardano-ledger.git + tag: 3f5b0467f342fb46a22746bb46ad96cb2b0a9c42 + --sha256: sha256-QU5CiiNY41HsN2ynCOgbpUvZPlYYeTanjgxVPFohKkE= + subdir: + eras/allegra/impl + eras/alonzo/impl + eras/alonzo/test-suite + eras/babbage/impl + eras/babbage/test-suite + eras/byron/chain/executable-spec + eras/byron/crypto + eras/byron/crypto/test + eras/byron/ledger/executable-spec + eras/byron/ledger/impl + eras/byron/ledger/impl/test + eras/conway/impl + eras/conway/test-suite + eras/mary/impl + eras/shelley/impl + eras/shelley-ma/test-suite + eras/shelley/test-suite + libs/cardano-data + libs/cardano-ledger-api + libs/cardano-ledger-binary + libs/cardano-ledger-core + libs/cardano-protocol-tpraos + libs/non-integral + libs/plutus-preprocessor + libs/set-algebra + libs/small-steps + libs/vector-map + +source-repository-package + type: git + location: https://github.com/IntersectMBO/ouroboros-network.git + tag: 7e8909f97d6ecc9fff320b3ac2b785aec74751c6 + --sha256: sha256-Evv2EwaXbr2tXlxnHVr/AAV+QB7B8EWJbQR6t4IvOQ4= + subdir: + cardano-client + cardano-ping + monoidal-synchronisation + network-mux + ntp-client + ouroboros-network + ouroboros-network-api + ouroboros-network-framework + ouroboros-network-mock + ouroboros-network-protocols + ouroboros-network-testing + quickcheck-monoids + +source-repository-package + type: git + location: https://github.com/IntersectMBO/ouroboros-consensus.git + tag: 8b0a1e2893cae744026565deff1e6a4596dd4161 + --sha256: sha256-mIdoQXTSVZvnxPayyk4yoZkXYsbXHnms5fBgq7bXfU8= + subdir: + ouroboros-consensus + ouroboros-consensus-cardano + ouroboros-consensus-protocol + ouroboros-consensus-diffusion + +source-repository-package + type: git + location: https://github.com/IntersectMBO/cardano-api.git + tag: 43a2524194769ac0c44fc7d8ae6be98256a1a11d + --sha256: sha256-vomTIsTCIqe4NvhhP1x/JYem6e7wocaAg/UV9OHb6tc= + subdir: + cardano-api + +source-repository-package + type: git + location: https://github.com/IntersectMBO/cardano-cli.git + tag: c6b442a7eace5bcd576037199648b0c9355203a5 + --sha256: sha256-D66uuQ9ulgvUHU42Vr4qbWWTAxI70ox9Kknkm9IRIM8= + subdir: + cardano-cli + +source-repository-package + type: git + location: https://github.com/neilmayhew/ekg-forward.git + tag: 4ba8bb693093f6cf54d43d6e9bbce1e08b0457dd + --sha256: sha256-g0gYqzRGjmZwxEzihJ4JifJe+GRfdLIMzaot7rUcjlI= diff --git a/nix/haskell.nix b/nix/haskell.nix index 3a0975211f8..4b37f166cf7 100644 --- a/nix/haskell.nix +++ b/nix/haskell.nix @@ -22,7 +22,7 @@ let name = "cardano-node"; compiler-nix-name = lib.mkDefault "ghc8107"; # extra-compilers - flake.variants = lib.genAttrs ["ghc96"] (x: {compiler-nix-name = x;}); + flake.variants = lib.genAttrs ["ghc96" "ghc98" "ghc910"] (x: {compiler-nix-name = x;}); cabalProjectLocal = '' repository cardano-haskell-packages-local url: file:${CHaP}