|
48 | 48 | }; |
49 | 49 |
|
50 | 50 | outputs = |
51 | | - { |
52 | | - self, |
53 | | - nixpkgs, |
54 | | - nixpkgs-arion, |
55 | | - cardano-configurations, |
56 | | - cardano-node, |
57 | | - ... |
| 51 | + { self |
| 52 | + , nixpkgs |
| 53 | + , nixpkgs-arion |
| 54 | + , cardano-configurations |
| 55 | + , cardano-node |
| 56 | + , ... |
58 | 57 | }@inputs: |
59 | 58 | let |
60 | 59 | linuxSystems = [ |
|
253 | 252 | }; |
254 | 253 | in |
255 | 254 | { |
256 | | - overlay = builtins.trace ( |
257 | | - "warning: `cardano-transaction-lib.overlay` is deprecated and will be" |
258 | | - + " removed in the next release. Please use" |
259 | | - + " `cardano-transaction-lib.overlays.{runtime, purescript}`" |
260 | | - + " directly instead" |
261 | | - ) nixpkgs.lib.composeManyExtensions (nixpkgs.lib.attrValues self.overlays); |
| 255 | + overlay = builtins.trace |
| 256 | + ( |
| 257 | + "warning: `cardano-transaction-lib.overlay` is deprecated and will be" |
| 258 | + + " removed in the next release. Please use" |
| 259 | + + " `cardano-transaction-lib.overlays.{runtime, purescript}`" |
| 260 | + + " directly instead" |
| 261 | + ) |
| 262 | + nixpkgs.lib.composeManyExtensions |
| 263 | + (nixpkgs.lib.attrValues self.overlays); |
262 | 264 |
|
263 | 265 | overlays = with inputs; { |
264 | 266 | purescript = final: prev: { |
|
271 | 273 | version = "0.21.0"; |
272 | 274 | src = |
273 | 275 | if final.stdenv.isDarwin then |
274 | | - final.fetchurl { |
275 | | - url = "https://github.com/purescript/spago/releases/download/${version}/macOS.tar.gz"; |
276 | | - sha256 = "19c0kdg7gk1c7v00lnkcsxidffab84d50d6l6vgrjy4i86ilhzd5"; |
277 | | - } |
| 276 | + final.fetchurl |
| 277 | + { |
| 278 | + url = "https://github.com/purescript/spago/releases/download/${version}/macOS.tar.gz"; |
| 279 | + sha256 = "19c0kdg7gk1c7v00lnkcsxidffab84d50d6l6vgrjy4i86ilhzd5"; |
| 280 | + } |
278 | 281 | else |
279 | 282 | final.fetchurl { |
280 | 283 | url = "https://github.com/purescript/spago/releases/download/${version}/Linux.tar.gz"; |
|
285 | 288 | }; |
286 | 289 | runtime = ( |
287 | 290 | final: prev: |
288 | | - let |
289 | | - inherit (prev) system; |
290 | | - in |
291 | | - { |
292 | | - ogmios = cardano-nix.packages.${system}.ogmios; |
293 | | - cardano-testnet = cardano-node.packages.${system}.cardano-testnet; |
294 | | - cardano-node = cardano-node.packages.${system}.cardano-node; |
295 | | - cardano-cli = cardano-node.packages.${system}.cardano-cli; |
296 | | - kupo = cardano-nix.packages.${system}.kupo; |
297 | | - cardano-db-sync = inputs.db-sync.packages.${system}.cardano-db-sync; |
298 | | - blockfrost-backend-ryo = inputs.blockfrost.packages.${system}.blockfrost-backend-ryo; |
299 | | - buildCtlRuntime = buildCtlRuntime final; |
300 | | - launchCtlRuntime = launchCtlRuntime final; |
301 | | - inherit cardano-configurations; |
302 | | - } |
| 291 | + let |
| 292 | + inherit (prev) system; |
| 293 | + in |
| 294 | + { |
| 295 | + ogmios = cardano-nix.packages.${system}.ogmios; |
| 296 | + cardano-testnet = cardano-node.packages.${system}.cardano-testnet; |
| 297 | + cardano-node = cardano-node.packages.${system}.cardano-node; |
| 298 | + cardano-cli = cardano-node.packages.${system}.cardano-cli; |
| 299 | + kupo = cardano-nix.packages.${system}.kupo; |
| 300 | + cardano-db-sync = inputs.db-sync.packages.${system}.cardano-db-sync; |
| 301 | + blockfrost-backend-ryo = inputs.blockfrost.packages.${system}.blockfrost-backend-ryo; |
| 302 | + buildCtlRuntime = buildCtlRuntime final; |
| 303 | + launchCtlRuntime = launchCtlRuntime final; |
| 304 | + inherit cardano-configurations; |
| 305 | + } |
303 | 306 | ); |
304 | 307 | }; |
305 | 308 |
|
|
0 commit comments