-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.nix
41 lines (33 loc) · 1.15 KB
/
default.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
{ nixpkgs, nixpkgs-2411, fenix }:
let trivialBuilders = import ./trivial.nix { inherit nixpkgs; }; in
let
node22 = import ./node/22/export.nix { inherit trivialBuilders; nixpkgs = nixpkgs-2411; nodejs = nixpkgs-2411.nodejs_22; };
# Shell
shell = (import ./shellWrapper/default.nix { inherit nixpkgs trivialBuilders; });
# Python
python = {
aws-export-credentials = import ./python/aws-export-credentials/default.nix { inherit nixpkgs; };
};
# Go
golang = {
nix-share = import ./golang/nix-share/default.nix { inherit nixpkgs; };
};
# dotnet
dotnet = import ./nuget/default.nix { inherit nixpkgs; };
# bin wrapper
bin = rec {
mirrord = import ./binWrapper/mirrord.nix { inherit nixpkgs; };
atomiutils = import ./binWrapper/atomiutils.nix { inherit nixpkgs; };
infrautils = import ./binWrapper/infrautils.nix { inherit nixpkgs gardenio mirrord; };
infralint = import ./binWrapper/infralint.nix { inherit nixpkgs; };
gardenio = import ./binWrapper/gardenio.nix { inherit nixpkgs; };
};
rust = import ./rust/default.nix { inherit nixpkgs fenix; };
in
shell
// python
// golang
// node22
// bin
// rust
// dotnet