diff options
| author | Franck Cuny <franck@fcuny.net> | 2022-05-23 19:41:40 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2022-05-23 19:41:40 -0700 |
| commit | c1e009646df45514638b7316471cb453c87bd9cb (patch) | |
| tree | bd6df07a65aa9c7a797c4731b68ed656a3d18904 /users/fcuny/resume/flake.nix | |
| parent | ref(notes): remove unneeded files for my notes (diff) | |
| parent | remove unused tex style (diff) | |
| download | infra-c1e009646df45514638b7316471cb453c87bd9cb.tar.gz | |
Merge remote-tracking branch 'resume/main'
Diffstat (limited to '')
| -rw-r--r-- | users/fcuny/resume/flake.nix | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/users/fcuny/resume/flake.nix b/users/fcuny/resume/flake.nix new file mode 100644 index 0000000..fbb2755 --- /dev/null +++ b/users/fcuny/resume/flake.nix @@ -0,0 +1,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 ]; }; + }); +} |
