Home

resume @8d7c9ac88da17987ef2d7e4dadf89e65273e8f63 - refs - log -
-
https://git.jolheiser.com/resume.git
My resume
resume / flake.nix
- raw -
 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
{
  inputs.nixpkgs.url = "github:nixos/nixpkgs";
  outputs =
    {
      self,
      nixpkgs,
    }:
    let
      systems = [
        "x86_64-linux"
        "i686-linux"
        "x86_64-darwin"
        "aarch64-linux"
        "armv6l-linux"
        "armv7l-linux"
      ];
      forAllSystems = f: nixpkgs.lib.genAttrs systems f;
    in
    {
      packages = forAllSystems (
        system:
        let
          pkgs = nixpkgs.legacyPackages.${system};
        in
        {
          default = pkgs.stdenv.mkDerivation {
            pname = "resume";
            version = "typst";
            src = ./.;
            nativeBuildInputs = with pkgs; [
              typst
              raleway
            ];
            buildPhase = ''
              runHook preBuild

              mkdir $out
              export TYPST_FONT_PATHS=${pkgs.raleway}/share/fonts
              typst compile resume.typ $out/resume.pdf
              typst compile resume.typ $out/resume.png
              cp resume.typ $out/resume.typ

              runHook postBuild
            '';
          };
        }
      );
      devShells = forAllSystems (
        system:
        let
          pkgs = nixpkgs.legacyPackages.${system};
        in
        {
          default = pkgs.mkShell {
            nativeBuildInputs = with pkgs; [
              typst
              raleway
            ];
            shellHook = ''
              export TYPST_FONT_PATHS=${pkgs.raleway}/share/fonts
            '';
          };
        }
      );
    };
}