Skip to content

Commit a7f9d7b

Browse files
committed
Purescript/CTL upgrades lbr-prelude
1 parent 5e3e3a9 commit a7f9d7b

File tree

11 files changed

+281
-335
lines changed

11 files changed

+281
-335
lines changed

flake.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
protobufs-nix.url = "github:mlabs-haskell/protobufs.nix";
99
mlabs-tooling.url = "github:mlabs-haskell/mlabs-tooling.nix";
1010
hci-effects.url = "github:hercules-ci/hercules-ci-effects";
11-
ctl.url = "github:plutonomicon/cardano-transaction-lib/bladyjoker/lambda-buffers-catalyst"; # path:/home/bladyjoker/Desktop/cardano-transaction-lib;
11+
ctl.url = "github:plutonomicon/cardano-transaction-lib?rev=fbf56b2965752ced05fd7f3a2d7ae6778e566df9";
1212
iohk-nix.url = "github:input-output-hk/iohk-nix";
1313
flake-parts.url = "github:hercules-ci/flake-parts";
1414
purifix.url = "github:purifix/purifix";
@@ -58,6 +58,6 @@
5858
./experimental/build.nix
5959
];
6060
debug = true;
61-
systems = [ "x86_64-linux" "x86_64-darwin" ];
61+
systems = [ "x86_64-linux" ];
6262
};
6363
}

runtimes/purescript/lbr-prelude/build.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ _:
1515
packageLockOnly = true;
1616
packages =
1717
[
18-
pkgs.nodejs_16
18+
pkgs.nodejs-18_x
1919
pkgs.bashInteractive
2020
pkgs.fd
2121
] ++ config.settings.shell.tools;

runtimes/purescript/lbr-prelude/package-lock.json

Lines changed: 7 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

runtimes/purescript/lbr-prelude/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@
1414
"author": "Drazen Popovic",
1515
"license": "MIT",
1616
"dependencies": {
17-
"@mlabs-haskell/json-bigint": " 1.0.0",
17+
"@mlabs-haskell/json-bigint": "2.0.0",
1818
"base64-js": "^1.5.1",
19-
"big-integer": "1.6.51",
2019
"bignumber.js": "^9.1.1",
2120
"bufferutil": "4.0.5",
2221
"node-polyfill-webpack-plugin": "1.1.4"

runtimes/purescript/lbr-prelude/packages.dhall

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ in upstream
105105
-------------------------------
106106
-}
107107
let upstream =
108-
https://github.com/purescript/package-sets/releases/download/psc-0.14.5-20220224/packages.dhall
109-
sha256:67cc3d4f0e8fb72bb1413ba94ddd72a3ceb0783eb725e3b22ad7568b3b581163
108+
https://github.com/purescript/package-sets/releases/download/psc-0.15.4-20230105/packages.dhall
109+
sha256:3e9fbc9ba03e9a1fcfd895f65e2d50ee2f5e86c4cd273f3d5c841b655a0e1bda
110110

111111
let additions =
112112
{ aeson =
@@ -117,8 +117,6 @@ let additions =
117117
, "argonaut-core"
118118
, "arrays"
119119
, "bifunctors"
120-
, "bigints"
121-
, "bignumber"
122120
, "const"
123121
, "control"
124122
, "effect"
@@ -127,6 +125,7 @@ let additions =
127125
, "foldable-traversable"
128126
, "foreign-object"
129127
, "integers"
128+
, "js-bigints"
130129
, "lists"
131130
, "maybe"
132131
, "mote"
@@ -136,7 +135,6 @@ let additions =
136135
, "prelude"
137136
, "quickcheck"
138137
, "record"
139-
, "sequences"
140138
, "spec"
141139
, "strings"
142140
, "tuples"
@@ -146,7 +144,7 @@ let additions =
146144
, "untagged-union"
147145
]
148146
, repo = "https://github.com/mlabs-haskell/purescript-aeson.git"
149-
, version = "bfd8f4dcd0522a076320f9dc710c24817438e02e"
147+
, version = "v2.0.0"
150148
}
151149
, sequences =
152150
{ dependencies =
@@ -191,6 +189,11 @@ let additions =
191189
, repo = "https://github.com/mlabs-haskell/purescript-bignumber"
192190
, version = "705923edd892a3397b90d28ce7db9a7181dcd599"
193191
}
192+
, js-bigints =
193+
{ dependencies = [ "integers", "maybe", "prelude" ]
194+
, repo = "https://github.com/purescript-contrib/purescript-js-bigints"
195+
, version = "36a7d8ac75a7230043ae511f3145f9ed130954a9"
196+
}
194197
}
195198

196199
in (upstream // additions)

0 commit comments

Comments
 (0)