-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathflake.nix
71 lines (66 loc) · 1.7 KB
/
flake.nix
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
{
description = "htmx";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
};
outputs = {
self,
nixpkgs,
}: let
forAllSystems = function:
nixpkgs.lib.genAttrs ["x86_64-linux" "aarch64-linux"] (system:
function rec {
inherit system;
compilerVersion = "ghc964";
pkgs = nixpkgs.legacyPackages.${system};
hsPkgs = pkgs.haskell.packages.${compilerVersion}.override {
overrides = hfinal: hprev:
with pkgs.haskell.lib; {
# Internal Packages
htmx = overrideCabal (hfinal.callCabal2nix "htmx" ./. {}) (drv: {checkPhase = "true";});
};
};
});
in {
formatter = forAllSystems ({pkgs, ...}: pkgs.alejandra);
# nix build
packages = forAllSystems (
{hsPkgs, ...}: {
inherit hsPkgs;
htmx = hsPkgs.htmx;
default = hsPkgs.htmx;
}
);
checks = {};
# nix develop
devShells = forAllSystems ({
system,
hsPkgs,
pkgs,
...
}: let
hkg = pkgs.writeShellScriptBin "hkg" (builtins.readFile ./scripts/hkg.sh);
in {
default = hsPkgs.shellFor {
name = "htmx";
shellHook = ''
export LOCALE_ARCHIVE="${pkgs.glibcLocales}/lib/locale/locale-archive"
export LC_ALL=C.UTF-8
'';
packages = p: [
p.htmx
];
buildInputs = with pkgs; [
hsPkgs.haskell-language-server
cabal2nix
haskellPackages.ghcid
haskellPackages.fourmolu
haskellPackages.cabal-fmt
haskellPackages.cabal-install
hlint
hkg
];
};
});
};
}