-
Notifications
You must be signed in to change notification settings - Fork 3
/
flake.nix
103 lines (103 loc) · 2.92 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
systems.url = "github:nix-systems/default";
flocken = {
url = "github:mirkolenz/flocken/v2";
inputs.nixpkgs.follows = "nixpkgs";
};
gomod2nix = {
url = "github:nix-community/gomod2nix";
inputs.nixpkgs.follows = "nixpkgs";
};
treefmt-nix = {
url = "github:numtide/treefmt-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
inputs@{
self,
nixpkgs,
flake-parts,
systems,
flocken,
...
}:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = import systems;
imports = [
inputs.treefmt-nix.flakeModule
];
perSystem =
{
pkgs,
system,
config,
lib,
...
}:
{
_module.args = {
pkgs = import nixpkgs {
inherit system;
overlays = [ inputs.gomod2nix.overlays.default ];
};
};
treefmt = {
projectRootFile = "flake.nix";
programs = {
gofmt.enable = true;
nixfmt.enable = true;
};
};
checks =
{
inherit (config.packages) grpc-proxy;
}
// lib.optionalAttrs (lib.elem system lib.platforms.linux) {
inherit (config.packages) grpc-proxy-full;
docker = config.packages.docker.passthru.stream;
};
packages =
{
default = config.packages.grpc-proxy;
grpc-proxy = pkgs.callPackage ./. { };
release-env = pkgs.buildEnv {
name = "release-env";
paths = with pkgs; [
go
goreleaser
gomod2nix
];
};
gomod2nix = pkgs.gomod2nix;
}
// lib.optionalAttrs (lib.elem system lib.platforms.linux) {
full = config.packages.grpc-proxy-full;
grpc-proxy-full = pkgs.callPackage ./full.nix { inherit (config.packages) grpc-proxy; };
docker = pkgs.callPackage ./docker.nix { inherit (config.packages) grpc-proxy-full; };
};
apps.docker-manifest.program = flocken.legacyPackages.${system}.mkDockerManifest {
github = {
enable = true;
token = "$GH_TOKEN";
};
version = builtins.getEnv "VERSION";
images = with self.packages; [
x86_64-linux.docker
aarch64-linux.docker
];
};
devShells.default = pkgs.mkShell {
packages = with pkgs; [
go
goreleaser
gomod2nix
config.treefmt.build.wrapper
];
};
};
};
}