-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
52 lines (48 loc) · 1.42 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
{
description = "dendrite-demo-pinecone";
nixConfig = {
extra-substituters = [
"https://dendrite-demo-pinecone.cachix.org"
];
extra-trusted-public-keys = [
"dendrite-demo-pinecone.cachix.org-1:qgybhOM1X0JikTrvpYo1HwtsXT2ee+6ajbmCjCns4yI="
];
};
inputs = {
nixpkgs.url = "nixpkgs/nixpkgs-unstable";
flake-parts = {
url = "flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
dendrite = {
url = "github:matrix-org/dendrite";
flake = false;
};
flake-compat.url = "github:edolstra/flake-compat";
pre-commit-hooks = {
url = "github:cachix/pre-commit-hooks.nix";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-compat.follows = "flake-compat";
};
};
};
outputs = inputs@{ self, flake-parts, nixpkgs, pre-commit-hooks, dendrite, ... }: flake-parts.lib.mkFlake { inherit inputs; } {
systems = [
"aarch64-linux"
"x86_64-linux"
];
perSystem = { pkgs, system, ... }:
{
packages = {
default = (import ./build.nix { inherit pkgs dendrite; }).main;
dendrite = (import ./build.nix { inherit pkgs dendrite; }).main;
dockerImage = import ./image.nix {
inherit pkgs dendrite;
inherit (self) lastModifiedDate;
};
};
devShells.default = import ./shell.nix { inherit pkgs pre-commit-hooks system; };
};
};
}