forked from libretto-ai/openai-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
42 lines (39 loc) · 1.24 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
{
description = "Libretto Development Environment";
# Flake inputs
inputs = {
nixpkgs.url = "nixpkgs/23.11";
nixpkgs-unstable.url = "nixpkgs/nixpkgs-unstable";
};
# Flake outputs
outputs = { self, nixpkgs, nixpkgs-unstable }:
let
# Systems supported
allSystems = [
"x86_64-linux" # 64-bit Intel/ARM Linux
"aarch64-linux" # 64-bit AMD Linux
"x86_64-darwin" # 64-bit Intel/ARM macOS
"aarch64-darwin" # 64-bit Apple Silicon
];
# Helper to provide system-specific attributes
nameValuePair = name: value: { inherit name value; };
genAttrs = names: f: builtins.listToAttrs (map (n: nameValuePair n (f n)) names);
forAllSystems = f: genAttrs allSystems (system: f {
pkgs = import nixpkgs { inherit system; };
pkgsUnstable = import nixpkgs-unstable { inherit system; };
});
in
{
# Development environment output
devShells = forAllSystems ({ pkgs, pkgsUnstable }: {
# The default development shell
default = pkgs.mkShell {
# The Nix packages provided in the environment
packages = with pkgs; [
nodejs-18_x
] ++ (with pkgsUnstable; [
]);
};
});
};
}