This contains my bachelors thesis and associated tex files, code snippets and maybe more. Topic: Data Movement in Heterogeneous Memories with Intel Data Streaming Accelerator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
427 B

  1. { stdenvNoCC, gitignoreSource, tex, gnumake }:
  2. stdenvNoCC.mkDerivation {
  3. pname = "latex-template";
  4. version = "1.0.0";
  5. src = gitignoreSource ../.;
  6. nativeBuildInputs = [
  7. gnumake
  8. tex
  9. ];
  10. doConfigure = false;
  11. # Avoid luatex failing due to non-writable cache.
  12. TEXMFVAR = "/tmp/texlive/";
  13. TEXTMFHOME = "/tmp/texlive/";
  14. installPhase = ''
  15. mkdir -p $out
  16. install -m 0644 diplom.pdf $out/
  17. '';
  18. }