├── .editorconfig ├── .github └── workflows │ ├── check.yml │ └── hub.yml ├── .gitignore ├── LICENSE ├── README.md ├── flake.nix └── tests ├── checks.json ├── checks ├── flake.lock └── flake.nix ├── flake.lock ├── flake.nix ├── legacyPackages.json ├── legacyPackages ├── flake.lock └── flake.nix ├── nixos.json ├── nixos ├── flake.lock └── flake.nix ├── packages.json ├── packages ├── flake.lock └── flake.nix ├── schemas.check-err ├── schemas.json └── schemas ├── flake.lock └── flake.nix /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/flake-schemas/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/flake-schemas/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/hub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/flake-schemas/HEAD/.github/workflows/hub.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/flake-schemas/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/flake-schemas/HEAD/README.md -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/flake-schemas/HEAD/flake.nix -------------------------------------------------------------------------------- /tests/checks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/flake-schemas/HEAD/tests/checks.json -------------------------------------------------------------------------------- /tests/checks/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/flake-schemas/HEAD/tests/checks/flake.lock -------------------------------------------------------------------------------- /tests/checks/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/flake-schemas/HEAD/tests/checks/flake.nix -------------------------------------------------------------------------------- /tests/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/flake-schemas/HEAD/tests/flake.lock -------------------------------------------------------------------------------- /tests/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/flake-schemas/HEAD/tests/flake.nix -------------------------------------------------------------------------------- /tests/legacyPackages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/flake-schemas/HEAD/tests/legacyPackages.json -------------------------------------------------------------------------------- /tests/legacyPackages/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/flake-schemas/HEAD/tests/legacyPackages/flake.lock -------------------------------------------------------------------------------- /tests/legacyPackages/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/flake-schemas/HEAD/tests/legacyPackages/flake.nix -------------------------------------------------------------------------------- /tests/nixos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/flake-schemas/HEAD/tests/nixos.json -------------------------------------------------------------------------------- /tests/nixos/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/flake-schemas/HEAD/tests/nixos/flake.lock -------------------------------------------------------------------------------- /tests/nixos/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/flake-schemas/HEAD/tests/nixos/flake.nix -------------------------------------------------------------------------------- /tests/packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/flake-schemas/HEAD/tests/packages.json -------------------------------------------------------------------------------- /tests/packages/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/flake-schemas/HEAD/tests/packages/flake.lock -------------------------------------------------------------------------------- /tests/packages/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/flake-schemas/HEAD/tests/packages/flake.nix -------------------------------------------------------------------------------- /tests/schemas.check-err: -------------------------------------------------------------------------------- 1 | error: Evaluation check 'foo.xyzzy.isValidValue' failed. 2 | -------------------------------------------------------------------------------- /tests/schemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/flake-schemas/HEAD/tests/schemas.json -------------------------------------------------------------------------------- /tests/schemas/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/flake-schemas/HEAD/tests/schemas/flake.lock -------------------------------------------------------------------------------- /tests/schemas/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/flake-schemas/HEAD/tests/schemas/flake.nix --------------------------------------------------------------------------------