Skip to content

Commit a7b308f

Browse files
committed
Bump required plutus-core version to 1.40
1 parent 40b5f8a commit a7b308f

File tree

16 files changed

+217
-289
lines changed

16 files changed

+217
-289
lines changed

cabal.project

-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,3 @@ tests: true
1616

1717
-- Important! Without this, you will get very limited output from any tests.
1818
test-show-details: direct
19-
20-
constraints:
21-
, plutus-core == 1.7.0.0
22-
, nothunks < 0.2

default.nix

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,19 @@
22
{
33
perSystem = { simpleHaskellNix, self', pkgs, config, ... }:
44
let
5+
cardanoPackages = pkgs.fetchFromGitHub {
6+
owner = "IntersectMBO";
7+
repo = "cardano-haskell-packages";
8+
rev = "3167b742cea332e1c978d8ecc69ef8d6bd0d6e19"; # branch: repo
9+
hash = "sha256-oCObuK/TY71lL+vDiRT0/Hhrsq4GRC7n8kcKBeonoUk=";
10+
};
11+
512
plutusTest = simpleHaskellNix.mkPackage {
613
name = "plutus-test";
714
src = ./.;
815

916
externalRepositories = {
10-
"https://input-output-hk.github.io/cardano-haskell-packages" = self.inputs.cardanoPackages;
17+
"https://input-output-hk.github.io/cardano-haskell-packages" = cardanoPackages;
1118
};
1219
};
1320
in

0 commit comments

Comments
 (0)