67 lines
1.3 KiB
Nix
67 lines
1.3 KiB
Nix
|
{
|
||
|
description = "Ambroisie's blog";
|
||
|
|
||
|
inputs = {
|
||
|
futils = {
|
||
|
type = "github";
|
||
|
owner = "numtide";
|
||
|
repo = "flake-utils";
|
||
|
ref = "master";
|
||
|
};
|
||
|
|
||
|
nixpkgs = {
|
||
|
type = "github";
|
||
|
owner = "NixOS";
|
||
|
repo = "nixpkgs";
|
||
|
ref = "nixpkgs-unstable";
|
||
|
};
|
||
|
|
||
|
pre-commit-hooks = {
|
||
|
type = "github";
|
||
|
owner = "cachix";
|
||
|
repo = "pre-commit-hooks.nix";
|
||
|
ref = "master";
|
||
|
inputs = {
|
||
|
flake-utils.follows = "futils";
|
||
|
nixpkgs.follows = "nixpkgs";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
outputs = { self, futils, nixpkgs, pre-commit-hooks } @ inputs:
|
||
|
futils.lib.eachDefaultSystem (system:
|
||
|
let
|
||
|
inherit (nixpkgs) lib;
|
||
|
pkgs = nixpkgs.legacyPackages.${system};
|
||
|
in
|
||
|
{
|
||
|
checks = {
|
||
|
pre-commit = pre-commit-hooks.lib.${system}.run {
|
||
|
src = ./.;
|
||
|
|
||
|
hooks = {
|
||
|
nixpkgs-fmt = {
|
||
|
enable = true;
|
||
|
};
|
||
|
|
||
|
shellcheck = {
|
||
|
enable = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
devShell = pkgs.mkShell {
|
||
|
name = "matrix-notifier";
|
||
|
|
||
|
buildInputs = with pkgs; [
|
||
|
curl
|
||
|
jq
|
||
|
];
|
||
|
|
||
|
inherit (self.checks.${system}.pre-commit) shellHook;
|
||
|
};
|
||
|
}
|
||
|
);
|
||
|
}
|