26 lines
838 B
Nix
26 lines
838 B
Nix
{
|
|
description = "private dev inputs";
|
|
|
|
# Dev dependencies
|
|
inputs.nixpkgs-dev.url = "github:NixOS/nixpkgs/nixos-25.05-small";
|
|
|
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
|
inputs.flake-utils.inputs.systems.follows = "systems";
|
|
|
|
inputs.nuschtos.url = "github:NuschtOS/search";
|
|
inputs.nuschtos.inputs.nixpkgs.follows = "nixpkgs-dev";
|
|
|
|
inputs.treefmt-nix.url = "github:numtide/treefmt-nix";
|
|
inputs.treefmt-nix.inputs.nixpkgs.follows = "";
|
|
|
|
inputs.systems.url = "github:nix-systems/default";
|
|
|
|
inputs.clan-core-for-checks.url = "git+https://git.clan.lol/clan/clan-core?ref=clan-25.05&shallow=1";
|
|
inputs.clan-core-for-checks.flake = false;
|
|
|
|
inputs.test-fixtures.url = "git+https://git.clan.lol/clan/test-fixtures";
|
|
inputs.test-fixtures.inputs.nixpkgs.follows = "nixpkgs-dev";
|
|
|
|
outputs = inputs: inputs;
|
|
}
|