mirror of
https://github.com/nix-community/flakelight.git
synced 2024-11-21 23:13:09 +01:00
19 lines
584 B
Nix
19 lines
584 B
Nix
# flakelight -- Framework for simplifying flake setup
|
|
# Copyright (C) 2023 Archit Gupta <archit@accelbread.com>
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
{
|
|
description =
|
|
"A modular Nix flake framework for simplifying flake definitions";
|
|
inputs.nixpkgs.url = "nixpkgs/nixos-unstable";
|
|
outputs = { nixpkgs, ... }@inputs:
|
|
let lib = import ./. nixpkgs; in
|
|
lib.mkFlake ./. {
|
|
inherit lib;
|
|
functor = _: lib.mkFlake;
|
|
templates = import ./templates;
|
|
checks.statix = pkgs: "${pkgs.statix}/bin/statix check";
|
|
outputs.tests = import ./tests inputs;
|
|
};
|
|
}
|