format
Some checks failed
Hydra packages.x86_64-linux.default Hydra build #48488 of flakes:matrix-media-expanded:packages.x86_64-linux.default
Hydra packages.x86_64-linux.matrix-media-expanded Hydra build #48492 of flakes:matrix-media-expanded:packages.x86_64-linux.matrix-media-expanded
Hydra checks.aarch64-darwin.treefmt Hydra build #48489 of flakes:matrix-media-expanded:checks.aarch64-darwin.treefmt
Hydra checks.x86_64-darwin.treefmt Hydra build #48491 of flakes:matrix-media-expanded:checks.x86_64-darwin.treefmt
Hydra checks.x86_64-linux.treefmt Hydra build #48493 of flakes:matrix-media-expanded:checks.x86_64-linux.treefmt
Hydra checks.aarch64-linux.treefmt Hydra build #48490 of flakes:matrix-media-expanded:checks.aarch64-linux.treefmt
Hydra packages.aarch64-linux.default Hydra build #48487 of flakes:matrix-media-expanded:packages.aarch64-linux.default
Hydra packages.aarch64-linux.matrix-media-expanded Hydra build #48494 of flakes:matrix-media-expanded:packages.aarch64-linux.matrix-media-expanded

This commit is contained in:
Charlotte 🦝 Delenk 2023-06-10 15:28:09 +01:00
parent f5fda366a1
commit a1d56f65ae
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122
2 changed files with 114 additions and 114 deletions

View file

@ -12,7 +12,7 @@
}; };
outputs = inputs: outputs = inputs:
inputs.flake-parts.lib.mkFlake {inherit inputs;} { inputs.flake-parts.lib.mkFlake { inherit inputs; } {
systems = import inputs.systems; systems = import inputs.systems;
imports = [ imports = [
inputs.haskell-flake.flakeModule inputs.haskell-flake.flakeModule
@ -20,13 +20,13 @@
inputs.flake-root.flakeModule inputs.flake-root.flakeModule
inputs.mission-control.flakeModule inputs.mission-control.flakeModule
]; ];
perSystem = { perSystem =
self', { self'
system, , system
lib, , lib
config, , config
pkgs, , pkgs
... , ...
}: { }: {
# Our only Haskell project. You can have multiple projects, but this template # Our only Haskell project. You can have multiple projects, but this template
# has only one. # has only one.
@ -65,11 +65,11 @@
treefmt = config.treefmt.build.wrapper; treefmt = config.treefmt.build.wrapper;
} }
// config.treefmt.build.programs; // config.treefmt.build.programs;
hlsCheck.enable = true; hlsCheck.enable = false;
}; };
# What should haskell-flake add to flake outputs? # What should haskell-flake add to flake outputs?
autoWire = ["packages" "apps" "checks"]; # Wire all but the devShell autoWire = [ "packages" "apps" "checks" ]; # Wire all but the devShell
}; };
# Auto formatters. This also adds a flake check to ensure that the # Auto formatters. This also adds a flake check to ensure that the
@ -137,7 +137,6 @@
config.mission-control.devShell config.mission-control.devShell
]; ];
}; };
formatter = pkgs.alejandra;
}; };
flake = { flake = {
hydraJobs = { hydraJobs = {

View file

@ -96,8 +96,8 @@ library
import: shared import: shared
exposed-modules: exposed-modules:
Codec.Multibase Codec.Multibase
, Codec.Multibase.Error Codec.Multibase.Error
, Codec.Multibase.Identity Codec.Multibase.Identity
executable matrix-media-expanded executable matrix-media-expanded
import: shared import: shared
@ -107,16 +107,17 @@ test-suite test
import: shared import: shared
build-depends: build-depends:
, tasty , tasty
, tasty-smallcheck
, tasty-quickcheck
, tasty-hunit , tasty-hunit
, tasty-quickcheck
, tasty-smallcheck
type: exitcode-stdio-1.0 type: exitcode-stdio-1.0
hs-source-dirs: test hs-source-dirs: test
main-is: Test.hs main-is: Test.hs
ghc-options: -main-is Test ghc-options: -main-is Test
other-modules: other-modules:
Codec.Multibase.Error Codec.Multibase.Error
, Codec.Multibase.Identity Codec.Multibase.Identity
, Test.Codec Test.Codec
, Test.Codec.Multibase Test.Codec.Multibase
, Test.Codec.Multibase.Identity Test.Codec.Multibase.Identity