-
Notifications
You must be signed in to change notification settings - Fork 33
/
flake.nix
48 lines (43 loc) · 1.22 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
{
inputs.nixpkgs.url = "github:nixos/nixpkgs/release-23.05";
outputs = inputs:
with builtins;
with inputs.nixpkgs.lib; let
systems = ["x86_64-linux" "x86_64-darwin"];
hydraJobs = import "${inputs.self}/release.nix" {
metadata-server = inputs.self;
supportedSystems = systems;
};
nativePkgs = {
inherit
(hydraJobs.native)
metadata-server
metadata-sync
metadata-validator-github
metadata-webhook
token-metadata-creator
;
};
in {
inherit hydraJobs;
packages = foldl' (
acc: pkg:
recursiveUpdate acc (
listToAttrs (
map (
system:
optionalAttrs (hasAttr system pkg.value) (
nameValuePair system (setAttrByPath [pkg.name] pkg.value.${system})
)
)
systems
)
)
) {} (mapAttrsToList nameValuePair nativePkgs);
};
nixConfig = {
extra-substituters = ["https://cache.iog.io"];
extra-trusted-public-keys = ["hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ="];
allow-import-from-derivation = true;
};
}