-
Notifications
You must be signed in to change notification settings - Fork 1
/
flake.nix
38 lines (37 loc) · 1.11 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 = "Connector for ingesting Cilium CI data into OpenSearch";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
inputs.devshell.url = "github:numtide/devshell";
outputs = { nixpkgs, flake-utils, devshell, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [
devshell.overlays.default
];
};
packages = with pkgs; [
act
docker-compose
go
gh
];
in
{
devShells.default = pkgs.devshell.mkShell rec {
name = "searchgh";
inherit packages;
devshell.startup."setprompt" = pkgs.lib.noDepEntry ''
export LP_MARK_PREFIX=" (cilium-ci-opensearch) "
'';
devshell.startup."printpackages" = pkgs.lib.noDepEntry ''
echo "[[ Packages ]]"
echo "${builtins.concatStringsSep "\n" (builtins.map (p: p.name) packages)}"
echo ""
'';
};
}
);
}