about summary refs log tree commit diff
path: root/users/grfn/resume/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/grfn/resume/default.nix')
-rw-r--r--users/grfn/resume/default.nix40
1 files changed, 0 insertions, 40 deletions
diff --git a/users/grfn/resume/default.nix b/users/grfn/resume/default.nix
deleted file mode 100644
index 4454e74c8261..000000000000
--- a/users/grfn/resume/default.nix
+++ /dev/null
@@ -1,40 +0,0 @@
-{ pkgs, ... }:
-
-with pkgs.lib;
-
-pkgs.runCommand "resume.pdf"
-{
-  buildInputs = [
-    (pkgs.texlive.combine {
-      inherit (pkgs.texlive)
-        capt-of
-        collection-fontsrecommended
-        enumitem
-        etoolbox
-        fancyvrb
-        float
-        fncychap
-        framed
-        l3packages
-        microtype
-        needspace
-        parskip
-        scheme-basic
-        tabulary
-        titlesec
-        ulem
-        upquote
-        varwidth
-        wrapfig
-        xcolor
-        ;
-    })
-  ];
-} ''
-  cp ${builtins.filterSource (path: type:
-    type == "regular" &&
-    any (ext: hasSuffix ext path) [".sty" ".cls" ".tex" ".png"]
-  ) ./.}/* .
-  pdflatex ./resume.tex
-  cp resume.pdf $out
-''