move all files to new nixfmt rfc

This commit is contained in:
Noah Masur
2024-04-20 09:42:06 -04:00
parent b23efc4d77
commit e43fc0f8db
159 changed files with 5309 additions and 4537 deletions

View File

@ -8,8 +8,14 @@
inputs.nixpkgs.follows = "haskellNix/nixpkgs-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { nixpkgs, flake-utils, haskellNix }:
flake-utils.lib.eachDefaultSystem (system:
outputs =
{
nixpkgs,
flake-utils,
haskellNix,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
overlay = self: _: {
hsPkgs = self.haskell-nix.project' rec {
@ -25,10 +31,12 @@
ormolu = {
version = "latest";
modules = [
({ lib, ... }: {
options.nonReinstallablePkgs =
lib.mkOption { apply = lib.remove "Cabal"; };
})
(
{ lib, ... }:
{
options.nonReinstallablePkgs = lib.mkOption { apply = lib.remove "Cabal"; };
}
)
];
};
};
@ -47,8 +55,13 @@
};
pkgs = import nixpkgs {
inherit system;
overlays = [ haskellNix.overlay overlay ];
overlays = [
haskellNix.overlay
overlay
];
};
flake = pkgs.hsPkgs.flake { };
in flake // { defaultPackage = flake.packages."hello:exe:hello-exe"; });
in
flake // { defaultPackage = flake.packages."hello:exe:hello-exe"; }
);
}