-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
38 lines (32 loc) · 1.12 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
{
description = "Meta+ is a more advanced type utilities library than Zig's standard meta.";
nixConfig = rec {
trusted-public-keys = [ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=" ];
substituters = [ "https://cache.nixos.org" "https://cache.garnix.io" ];
trusted-substituters = substituters;
fallback = true;
http2 = false;
};
inputs.expidus-sdk = {
url = github:ExpidusOS/sdk;
inputs.nixpkgs.follows = "nixpkgs";
};
inputs.nixpkgs.url = github:ExpidusOS/nixpkgs;
inputs.zig-overlay.url = github:mitchellh/zig-overlay;
outputs = { self, expidus-sdk, nixpkgs, zig-overlay }@inputs:
with expidus-sdk.lib;
flake-utils.eachSystem flake-utils.allSystems (system:
let
pkgs = expidus-sdk.legacyPackages.${system}.appendOverlays [
zig-overlay.overlays.default
(f: p: {
zig = f.zigpkgs.master;
})
];
in {
devShells.default = pkgs.mkShell {
name = "meta-plus";
packages = with pkgs; [ zig ];
};
});
}