mirror of
https://git.madhouse-project.org/algernon/iocaine.git
synced 2025-02-15 06:06:18 +01:00
23 lines
427 B
Nix
23 lines
427 B
Nix
|
# SPDX-FileCopyrightText: 2025 Gergely Nagy
|
||
|
# SPDX-FileContributor: Gergely Nagy
|
||
|
#
|
||
|
# SPDX-License-Identifier: MIT
|
||
|
|
||
|
{ pkgs, treefmt, ... }:
|
||
|
|
||
|
{
|
||
|
treefmt = {
|
||
|
enable = true;
|
||
|
always_run = true;
|
||
|
package = treefmt;
|
||
|
};
|
||
|
reuse = {
|
||
|
enable = true;
|
||
|
name = "reuse";
|
||
|
description = "Run REUSE compliance tests";
|
||
|
entry = "${pkgs.reuse}/bin/reuse lint";
|
||
|
pass_filenames = false;
|
||
|
always_run = true;
|
||
|
};
|
||
|
}
|