Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
inputs = {
cborg = {
url = "github:parsonsmatt/cborg/05ca2063ff631667699bffbeee3a4a076943b905";
flake = false;
};
cereal = {
url = "github:GaloisInc/cereal";
flake = false;
};
composite-dhall = {
url = "git+https://gitlab.homotopic.tech/haskell/composite-dhall";
flake = false;
};
composite-lens-extra = {
url = "git+https://gitlab.homotopic.tech/haskell/composite-lens-extra";
flake = false;
};
double-conversion = {
url = "github:haskell/double-conversion";
flake = false;
};
flake-parts.url = "github:hercules-ci/flake-parts";
flake-parts.inputs.nixpkgs.follows = "nixpkgs";
foundation = {
url = "github:parsonsmatt/foundation";
flake = false;
};
hedgehog = {
url = "github:hedgehogqa/haskell-hedgehog";
flake = false;
};
ghc-tcplugins-extra = {
url = "github:clash-lang/ghc-tcplugins-extra/8852d8ad94effa39e3400a243b21ae444df6c69e";
flake = false;
};
lint-utils.url = "git+https://gitlab.homotopic.tech/nix/lint-utils";
hashable = {
url = "github:haskell-unordered-containers/hashable";
flake = false;
};
haskell-flake.url = "github:srid/haskell-flake";
integer-logarithms = {
url = "github:haskellari/integer-logarithms";
flake = false;
};
memory = {
url = "github:parsonsmatt/hs-memory/0f760c8ba0b7d5aacf04a7294e87e5e4fff53f40";
flake = false;
};
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
tasty = {
url = "github:UnkindPartition/tasty";
flake = false;
};
tasty-hedgehog = {
url = "github:locallycompact/tasty-hedgehog";
flake = false;
};
th-lift-instances = {
url = "github:bennofs/th-lift-instances";
flake = false;
};
polysemy-time = {
url = "github:tek/polysemy-time";
flake = false;
};
};
outputs = inputs@{ self, nixpkgs, flake-utils, lint-utils, ... }:
flake-utils.lib.eachSystem [ "x86_64-linux" ] (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
checks = {
nixpkgs-fmt = lint-utils.outputs.linters.${system}.nixpkgs-fmt ./.;
};
overlays = import ./overlay.nix { inherit inputs pkgs; };
});
}