1
0
Fork 0
mirror of https://codeberg.org/icewind/vbsp.git synced 2026-06-04 02:54:08 +02:00
vbsp/flake.nix
2025-02-15 17:02:38 +01:00

17 lines
428 B
Nix

{
inputs = {
nixpkgs.url = "nixpkgs/nixos-24.11";
flakelight = {
url = "github:nix-community/flakelight";
inputs.nixpkgs.follows = "nixpkgs";
};
mill-scale = {
url = "github:icewind1991/mill-scale";
inputs.flakelight.follows = "flakelight";
};
};
outputs = {mill-scale, ...}:
mill-scale ./. {
extraPaths = [./fuzz ./examples ./benches ./koth_bagel_rc2a.bsp];
};
}