1
0
Fork 0
mirror of https://github.com/ryanccn/flake.git synced 2025-12-06 08:10:43 +01:00

refactor: flake-parts

This commit is contained in:
Ryan Cao 2025-04-03 00:36:22 +08:00
parent 872c6be493
commit 42a1293f6d
Signed by: ryanccn
GPG key ID: F605AB4AF937D5D0
63 changed files with 1118 additions and 875 deletions

49
checks/default.nix Normal file
View file

@ -0,0 +1,49 @@
# SPDX-FileCopyrightText: 2025 Ryan Cao <hello@ryanccn.dev>
#
# SPDX-License-Identifier: Apache-2.0
{ self, ... }:
{
perSystem =
{ pkgs, config, ... }:
let
mkFlakeCheck =
args:
pkgs.stdenv.mkDerivation (
{
name = "check-${args.name}";
src = self;
buildPhase = ''
${args.command}
touch "$out"
'';
doCheck = false;
dontInstall = true;
dontFixup = true;
}
// (removeAttrs args [
"name"
"command"
])
);
in
{
checks = {
nixfmt = mkFlakeCheck {
name = "nixfmt";
command = "find . -name '*.nix' -exec nixfmt --check {} +";
nativeBuildInputs = with pkgs; [ nixfmt-rfc-style ];
};
reuse = mkFlakeCheck {
name = "reuse";
command = "reuse lint";
nativeBuildInputs = with pkgs; [ reuse ];
};
};
};
}