-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathflake.nix
71 lines (70 loc) · 1.8 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
{
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
outputs =
inputs:
with builtins;
let
inherit (inputs.nixpkgs) lib;
foreach =
xs: f:
with lib;
foldr recursiveUpdate { } (
if isList xs then
map f xs
else if isAttrs xs then
mapAttrsToList f xs
else
throw "foreach: expected list or attrset but got ${typeOf xs}"
);
hsSrc =
root:
with lib.fileset;
toSource {
inherit root;
fileset = fileFilter (
file:
any file.hasExt [
"cabal"
"hs"
"md"
]
|| file.name == "LICENSE"
|| file.type == "directory"
) ./.;
};
pname = "zfoh";
overlay =
final: prev:
lib.pipe prev [
(prev: {
haskell = prev.haskell // {
packageOverrides = lib.composeManyExtensions [
prev.haskell.packageOverrides
(
hfinal: hprev: with prev.haskell.lib.compose; {
${pname} = doJailbreak (hfinal.callCabal2nix pname (hsSrc ./.) { });
}
)
];
};
})
];
in
foreach inputs.nixpkgs.legacyPackages (
system: pkgs':
let
pkgs = pkgs'.extend overlay;
in
{
formatter.${system} = pkgs.nixfmt-rfc-style;
packages.${system}.default = pkgs.haskellPackages.${pname};
devShells.${system}.default = pkgs.haskellPackages.shellFor {
packages = ps: [ ps.${pname} ];
nativeBuildInputs = with pkgs.haskellPackages; [
cabal-install
stack
];
};
}
);
}