Skip to content

Commit 7c68939

Browse files
committed
apply formatting
1 parent 29d6c29 commit 7c68939

File tree

1 file changed

+23
-21
lines changed

1 file changed

+23
-21
lines changed

flake.nix

Lines changed: 23 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -126,25 +126,26 @@
126126
allow-newer: size-based:template-haskell
127127
'';
128128

129-
haskellModules = [(
130-
{ pkgs, ... }:
131-
{
132-
packages = {
133-
marlowe.flags.defer-plugin-errors = true;
134-
plutus-use-cases.flags.defer-plugin-errors = true;
135-
plutus-ledger.flags.defer-plugin-errors = true;
136-
plutus-contract.flags.defer-plugin-errors = true;
137-
cardano-crypto-praos.components.library.pkgconfig = pkgs.lib.mkForce [ [ pkgs.libsodium-vrf ] ];
138-
cardano-crypto-class.components.library.pkgconfig = pkgs.lib.mkForce [ [ pkgs.libsodium-vrf ] ];
139-
cardano-wallet-core.components.library.build-tools = [
140-
pkgs.buildPackages.buildPackages.gitMinimal
141-
];
142-
cardano-config.components.library.build-tools = [
143-
pkgs.buildPackages.buildPackages.gitMinimal
144-
];
145-
};
146-
}
147-
)];
129+
haskellModules = [
130+
({ pkgs, ... }:
131+
{
132+
packages = {
133+
marlowe.flags.defer-plugin-errors = true;
134+
plutus-use-cases.flags.defer-plugin-errors = true;
135+
plutus-ledger.flags.defer-plugin-errors = true;
136+
plutus-contract.flags.defer-plugin-errors = true;
137+
cardano-crypto-praos.components.library.pkgconfig = pkgs.lib.mkForce [ [ pkgs.libsodium-vrf ] ];
138+
cardano-crypto-class.components.library.pkgconfig = pkgs.lib.mkForce [ [ pkgs.libsodium-vrf ] ];
139+
cardano-wallet-core.components.library.build-tools = [
140+
pkgs.buildPackages.buildPackages.gitMinimal
141+
];
142+
cardano-config.components.library.build-tools = [
143+
pkgs.buildPackages.buildPackages.gitMinimal
144+
];
145+
};
146+
}
147+
)
148+
];
148149

149150
extraSources = [
150151
{
@@ -316,7 +317,8 @@
316317
let
317318
pkgs = nixpkgsFor system;
318319
pkgs' = nixpkgsFor' system;
319-
in pkgs.haskell-nix.cabalProject' {
320+
in
321+
pkgs.haskell-nix.cabalProject' {
320322
src = ./.;
321323
inherit cabalProjectLocal extraSources;
322324
name = "bot-plutus-interface";
@@ -326,7 +328,7 @@
326328
ps.plutus-pab
327329
];
328330
withHoogle = true;
329-
tools.haskell-language-server = {};
331+
tools.haskell-language-server = { };
330332
exactDeps = true;
331333
nativeBuildInputs = with pkgs'; [
332334
cabal-install

0 commit comments

Comments
 (0)