blob: 72d4fc075356a40a27e7d459661ce299e4b1e712 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
{
description = "Franck Cuny's personal website.";
inputs = {
nixpkgs.url = "https://channels.nixos.org/nixos-25.05-small/nixexprs.tar.xz";
flake-utils.url = "github:numtide/flake-utils";
pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
treefmt-nix.url = "github:numtide/treefmt-nix";
};
outputs =
{
self,
nixpkgs,
flake-utils,
pre-commit-hooks,
treefmt-nix,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs {
inherit system;
};
treefmtEval = treefmt-nix.lib.evalModule pkgs ./treefmt.nix;
in
{
# for `nix fmt`
formatter = treefmtEval.config.build.wrapper;
# for `nix flake check`
checks = {
# Throws an error if any of the source files are not correctly formatted
# when you run `nix flake check --print-build-logs`. Useful for CI
treefmt = treefmtEval.config.build.check self;
pre-commit-check = pre-commit-hooks.lib.${system}.run {
src = ./.;
hooks = {
format = {
enable = true;
name = "Format with treefmt";
pass_filenames = true;
entry = "${treefmtEval.config.build.wrapper}/bin/treefmt";
stages = [
"pre-commit"
"pre-push"
];
};
};
};
};
# for `nix build`
packages = {
default =
with pkgs;
stdenv.mkDerivation {
pname = "fcuny.net";
version = self.lastModifiedDate;
src = ./.;
buildInputs = [
pandoc
];
buildPhase = ''
mkdir -p $out
pandoc --embed-resources -s src/index.org --css=src/css/main.css -t html -o $out/index.html
pandoc --embed-resources -s src/resume.org --css=src/css/resume.css -t html -o $out/resume.html
'';
dontInstall = true;
};
};
devShells.default = pkgs.mkShell {
inherit (self.checks.${system}.pre-commit-check) shellHook;
packages = with pkgs; [
git
treefmt
];
};
}
);
}
|