-
Notifications
You must be signed in to change notification settings - Fork 5
/
flake.nix
133 lines (133 loc) · 3.76 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
systems.url = "github:nix-systems/default";
flocken = {
url = "github:mirkolenz/flocken/v2";
inputs.nixpkgs.follows = "nixpkgs";
};
treefmt-nix = {
url = "github:numtide/treefmt-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
pyproject-nix = {
url = "github:nix-community/pyproject.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
uv2nix = {
url = "github:adisbladis/uv2nix";
inputs.pyproject-nix.follows = "pyproject-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
nixConfig = {
extra-substituters = [
"https://nix-community.cachix.org"
];
extra-trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
outputs =
inputs@{
self,
nixpkgs,
flake-parts,
systems,
flocken,
uv2nix,
...
}:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = import systems;
imports = [
inputs.flake-parts.flakeModules.easyOverlay
inputs.treefmt-nix.flakeModule
];
perSystem =
{
pkgs,
system,
lib,
config,
...
}:
let
inherit (config.legacyPackages) pythonSet;
in
{
_module.args.pkgs = import nixpkgs {
inherit system;
config = {
allowUnfree = true;
};
overlays = lib.singleton (
final: prev: {
python3 = final.python312;
uv = uv2nix.packages.${system}.uv-bin;
}
);
};
overlayAttrs = {
inherit (config.packages) cbrkit;
};
checks = pythonSet.cbrkit.passthru.tests // {
inherit (pythonSet.cbrkit.passthru) docs;
};
treefmt = {
projectRootFile = "flake.nix";
programs = {
ruff-check.enable = true;
ruff-format.enable = true;
nixfmt.enable = true;
};
};
legacyPackages.pythonSet = pkgs.callPackage ./default.nix {
inherit (inputs) uv2nix pyproject-nix;
};
packages = {
inherit (pythonSet.cbrkit.passthru) docs;
default = config.packages.cbrkit;
cbrkit = pythonSet.mkApp "optionals";
docker = pkgs.dockerTools.streamLayeredImage {
name = "cbrkit";
tag = "latest";
created = "now";
config.Entrypoint = [ (lib.getExe config.packages.cbrkit) ];
};
release-env = pkgs.buildEnv {
name = "release-env";
paths = with pkgs; [
uv
python3
];
};
};
apps.docker-manifest.program = flocken.legacyPackages.${system}.mkDockerManifest {
github = {
enable = true;
token = "$GH_TOKEN";
};
version = builtins.getEnv "VERSION";
imageStreams = with self.packages; [ x86_64-linux.docker ];
};
devShells.default = pkgs.mkShell {
packages = with pkgs; [
uv
config.treefmt.build.wrapper
];
nativeBuildInputs = with pkgs; [ zlib ];
LD_LIBRARY_PATH = lib.makeLibraryPath [
pkgs.stdenv.cc.cc
pkgs.zlib
"/run/opengl-driver"
];
UV_PYTHON = lib.getExe pkgs.python3;
shellHook = ''
uv sync --all-extras --locked
'';
};
};
};
}