about summary refs log tree commit diff
path: root/users/fcuny/resume/flake.nix
blob: fbb2755c3706039886255259de94486bf01c41b4 (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
{
  description = "Franck Cuny's resume";
  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs";
    flake-utils.url = "github:numtide/flake-utils";
  };

  outputs = { self, nixpkgs, flake-utils }:
    flake-utils.lib.eachDefaultSystem (system:
      let pkgs = nixpkgs.legacyPackages.${system};
      in {
        defaultPackage = pkgs.stdenv.mkDerivation {
          name = "resume";
          buildInputs = with pkgs; [ pandoc ];
          src = ./.;
          buildPhase = ''
            pandoc --self-contained --css styles/resume.css --from org --to html --output resume.html readme.org
          '';

          installPhase = ''
            mkdir -p $out
            cp resume.html $out/
          '';
        };
        devShell = pkgs.mkShell { buildInputs = with pkgs; [ git pandoc ]; };
      });
}