-
Notifications
You must be signed in to change notification settings - Fork 16
/
flake.nix
56 lines (52 loc) · 1.47 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
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
systems.url = "github:nix-systems/default";
pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
haskell-flake.url = "github:srid/haskell-flake";
rust-flake.url = "github:juspay/rust-flake";
};
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;
devShells.default = pkgs.mkShell {
inputsFrom = [
self'.devShells.rust
self'.devShells.haskell
config.pre-commit.devShell
];
# Add your devShell tools here
packages = with pkgs; [
docker-compose
gnumake
# Why do we need this?
stdenv.cc
awscli2
jq
nodejs_18
nixpkgs-fmt
bacon
cargo-watch
diesel-cli
leptosfmt
wasm-pack
# go client
# go
];
};
};
};
}