-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
29 lines (24 loc) · 984 Bytes
/
flake.nix
File metadata and controls
29 lines (24 loc) · 984 Bytes
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
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/release-25.05";
nixpkgsPlaywright.url = "github:nixos/nixpkgs?rev=2359bf073eafc48bd92120b4313f9cb2e081c7db";
perch.url = "github:altibiz/perch/refs/tags/2.2.1";
perch.inputs.nixpkgs.follows = "nixpkgs";
pyproject-nix.url = "github:pyproject-nix/pyproject.nix";
pyproject-nix.inputs.nixpkgs.follows = "nixpkgs";
uv2nix.url = "github:pyproject-nix/uv2nix";
uv2nix.inputs.pyproject-nix.follows = "pyproject-nix";
uv2nix.inputs.nixpkgs.follows = "nixpkgs";
pyproject-build-systems.url = "github:pyproject-nix/build-system-pkgs";
pyproject-build-systems.inputs.pyproject-nix.follows = "pyproject-nix";
pyproject-build-systems.inputs.uv2nix.follows = "uv2nix";
pyproject-build-systems.inputs.nixpkgs.follows = "nixpkgs";
};
outputs =
{ nixpkgs, perch, ... }@inputs:
perch.lib.flake.make {
inherit inputs;
root = ./.;
prefix = "scripts/flake";
};
}