aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/resume/default.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-10-27 19:24:57 -0700
committerFranck Cuny <franck@fcuny.net>2022-10-27 19:24:57 -0700
commita5679641aa0eb9e872605b70c263c3e950132647 (patch)
tree7f4a9670365f8f13152d1070e5d5803f3618aa91 /users/fcuny/resume/default.nix
parentfeat(ops/github): archive notes.fcuny.net (diff)
downloadinfra-a5679641aa0eb9e872605b70c263c3e950132647.tar.gz
ref(users/fcuny): and just like that ...
Diffstat (limited to '')
-rw-r--r--users/fcuny/resume/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/users/fcuny/resume/default.nix b/users/fcuny/resume/default.nix
deleted file mode 100644
index 86fbcf0..0000000
--- a/users/fcuny/resume/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ pkgs, ... }:
-
-pkgs.stdenv.mkDerivation rec {
- name = "resume";
-
- src = ./.;
-
- nativeBuildInputs = [ pkgs.pandoc pkgs.git ];
-
- installPhase = ''
- mkdir -p $out
- pandoc --self-contained --css styles/resume.css --from org --to html --output $out/resume.html resume.org
- '';
-
- publish = pkgs.writers.writeBashBin "publish" ''
- set -ueo pipefail
- export PATH=${pkgs.lib.makeBinPath [ pkgs.pandoc pkgs.git ]}
-
- cd $(git rev-parse --show-toplevel)/users/fcuny/resume
-
- out=$(git rev-parse --show-toplevel)/users/fcuny/blog/static/resume.html
- pandoc --self-contained --css styles/resume.css --from org --to html --output $out resume.org
- '';
-
- meta = with pkgs.lib; {
- description = "franck cuny's resume";
- homepage = "https://fcuny.net/resume.html";
- license = licenses.mit;
- platforms = platforms.linux;
- maintainers = [ ];
- };
-}