mirror of
https://git.madhouse-project.org/algernon/iocaine.git
synced 2025-02-09 03:06:19 +01:00
22 lines
427 B
Nix
22 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;
|
|
};
|
|
}
|