Skip to content

Commit 07ab4a3

Browse files
committed
Fix formatting
1 parent a679683 commit 07ab4a3

File tree

7 files changed

+257
-254
lines changed

7 files changed

+257
-254
lines changed

flake.nix

Lines changed: 35 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,12 @@
4848
};
4949

5050
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+
, ...
5857
}@inputs:
5958
let
6059
linuxSystems = [
@@ -253,12 +252,15 @@
253252
};
254253
in
255254
{
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);
262264

263265
overlays = with inputs; {
264266
purescript = final: prev: {
@@ -271,10 +273,11 @@
271273
version = "0.21.0";
272274
src =
273275
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+
}
278281
else
279282
final.fetchurl {
280283
url = "https://github.com/purescript/spago/releases/download/${version}/Linux.tar.gz";
@@ -285,21 +288,21 @@
285288
};
286289
runtime = (
287290
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+
}
303306
);
304307
};
305308

0 commit comments

Comments
 (0)