summaryrefslogtreecommitdiff
path: root/flake.nix
blob: 525ebc60bfea6dea661e04b73749de8b2aa87f44 (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
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
{
  description = "Latex Project Report Template";

  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs";
    utils.url = "github:numtide/flake-utils";
    gitignore = {
      url = "github:hercules-ci/gitignore";
      flake = false;
    };
    flake-compat = {
      url = "github:edolstra/flake-compat";
      flake = false;
    };
  };

  outputs = { self, nixpkgs, utils, gitignore, ... }:
    utils.lib.eachDefaultSystem (system:
      let
        pkgs = nixpkgs.legacyPackages."${system}";
        inherit (import gitignore { inherit (pkgs) lib; }) gitignoreSource;
        nativeBuildInputs = with pkgs; [
          (texlive.combine {
            inherit (texlive)
              scheme-medium
              multirow
              hyperref
              blindtext
              fancyhdr
              etoolbox
              topiclongtable;
          })
          gnumake
        ];
      in
      rec {
        defaultPackage = stdenv.mkDerivation {
          pname = "report";
          version = "0.1.0";
          src = gitignoreSource ./.;
          buildInputs = nativeBuildInputs;
          buildPhase = ''
            latexmk -pdf \
              -pdflatex="pdflatex -interaction=nonstopmode" \
              -use-make 
              ${pname}.tex
          '';
          installPhase = ''
            mkdir -p $out
            cp ${pname}.pdf $out/
          '';
        };
        devShell = pkgs.mkShell {
          nativeBuildInputs = nativeBuildInputs;
        };
      });
}