-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathflake.nix
More file actions
96 lines (90 loc) · 2.56 KB
/
flake.nix
File metadata and controls
96 lines (90 loc) · 2.56 KB
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
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
systems.url = "github:nix-systems/default";
pre-commit-hooks = {
url = "github:cachix/pre-commit-hooks.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
haskell-flake.url = "github:srid/haskell-flake";
rust-flake = {
url = "github:juspay/rust-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
open-feature-hs = {
url = "github:juspay/open-feature-haskell-sdk";
inputs.haskell-flake.follows = "haskell-flake";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts";
};
};
outputs =
inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
systems = import inputs.systems;
imports = [
inputs.haskell-flake.flakeModule
inputs.rust-flake.flakeModules.default
inputs.rust-flake.flakeModules.nixpkgs
inputs.pre-commit-hooks.flakeModule
./nix/pre-commit.nix
./clients/haskell
./nix/rust.nix
./nix/om.nix
];
perSystem =
{
pkgs,
self',
config,
...
}:
{
formatter = pkgs.nixpkgs-fmt;
packages.smithy-cli = pkgs.callPackage ./nix/smithy-cli.nix { };
devShells.default = pkgs.mkShell {
inputsFrom = [
# self'.devShells.haskell
self'.devShells.rust
config.pre-commit.devShell
];
# Add your devShell tools here
packages = with pkgs; [
bun
self'.packages.smithy-cli
docker-compose
gnumake
# Why do we need this?
stdenv.cc
awscli2
jq
nodejs_24
nixpkgs-fmt
bacon
cargo-watch
cargo-edit
cargo-msrv
diesel-cli
leptosfmt
wasm-pack
yq
(gradle-packages.mkGradle {
version = "8.14.3";
hash = "sha256-vXEQIhNJMGCVbsIp2Ua+7lcVjb2J0OYrkbyg+ixfNTE=";
defaultJava = jdk17;
})
jdk17
uv
# go client
# go
];
shellHook = ''
# If it exists from the host system, kill it
unset DEVELOPER_DIR
'';
};
};
};
}