blob: aa8e775d5d95c3e5e4751ec5809b409a748e9837 (
plain)
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
|
{
description = "TeX project";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs";
flake-parts.url = "github:hercules-ci/flake-parts";
tex-shell.url = "git://git.mathematicaster.org/tex-shell";
systems.url = "github:nix-systems/default";
};
outputs =
inputs@{ self, flake-parts, ... }:
flake-parts.lib.mkFlake { inherit self inputs; } {
systems = import inputs.systems;
imports = [ inputs.tex-shell.flakeModules.default ];
perSystem =
{ pkgs, config, ... }:
{
texShell = {
scheme = pkgs.texliveSmall;
latexmk.enable = true;
};
devShells.default = pkgs.mkShellNoCC { inputsFrom = [ config.texShell.build.devShell ]; };
};
};
}
|