aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/resume/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/fcuny/resume/flake.nix')
-rw-r--r--users/fcuny/resume/flake.nix27
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 ]; };
+ });
+}