mirror of
https://codeberg.org/demostf/api-client.git
synced 2026-06-03 08:34:15 +02:00
24 lines
611 B
Nix
24 lines
611 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "nixpkgs/nixos-24.11";
|
|
flakelight = {
|
|
url = "github:nix-community/flakelight";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
mill-scale = {
|
|
url = "git+https://codeberg.org/icewind/mill-scale.git";
|
|
inputs.flakelight.follows = "flakelight";
|
|
};
|
|
};
|
|
outputs = {mill-scale, ...}:
|
|
mill-scale ./. {
|
|
cargoTest = false;
|
|
withOverlays = [(import ./nix/overlay.nix)];
|
|
packages = {
|
|
test-runner = pkgs: pkgs.test-runner;
|
|
};
|
|
checks = {
|
|
test = pkgs: pkgs.nixosTest (import ./nix/test.nix);
|
|
};
|
|
};
|
|
}
|