-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathflake.nix
44 lines (42 loc) · 1.05 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
{
description = "Dependencies for development";
inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs, flake-utils } @ imports: (
flake-utils.lib.eachDefaultSystem (
system: (
let
overlays = [
];
pkgs = import nixpkgs { inherit overlays system; };
baseDependencies = with pkgs; [
python3
];
in
{
formatter = pkgs.nixpkgs-fmt;
devShells = rec {
default = docs;
docs = pkgs.mkShell {
buildInputs = with pkgs; [
nodejs
]
++ baseDependencies;
};
doc-tests = pkgs.mkShell {
buildInputs = with pkgs; [
cargo
rustc
rustfmt
]
++ lib.optionals stdenv.isDarwin [libiconv]
++ baseDependencies;
};
};
}
)
)
);
}