forked from VoodooTeam/irsa-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shell.nix
40 lines (37 loc) · 827 Bytes
/
shell.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
let
pkgs = import
(builtins.fetchTarball {
name = "nixos-21.05";
url = "https://github.com/NixOS/nixpkgs/archive/21.05.tar.gz";
sha256 = "1ckzhh24mgz6jd1xhfgx0i9mijk6xjqxwsshnvq789xsavrmsc36";
})
{ };
voodoo = import
(builtins.fetchGit {
url = "[email protected]:VoodooTeam/devops-nix-pkgs.git";
ref = "v0.1.0";
})
{ inherit pkgs; system = builtins.currentSystem; };
in
pkgs.mkShell {
buildInputs =
[
# go vim
pkgs.go
pkgs.gopls
pkgs.asmfmt
pkgs.errcheck
# operator-sdk cli
voodoo.operator-sdk_1_3_0
voodoo.helm_3_4_2
# only for local testing
pkgs.docker-compose
voodoo.kind_0_9_0
pkgs.awscli2
pkgs.openssl
pkgs.curl
pkgs.jq
pkgs.gnumake
pkgs.envsubst
];
}