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.

20 lines
339 B

  1. { sources ? import ./nix/sources.nix
  2. , pkgs ? import sources.nixpkgs { }
  3. }:
  4. let
  5. thisPackage = import ./nix/release.nix {
  6. inherit sources;
  7. inherit pkgs;
  8. };
  9. in
  10. pkgs.mkShell {
  11. nativeBuildInputs = with pkgs; [
  12. # convenience for working with nix files
  13. niv
  14. nixpkgs-fmt
  15. ];
  16. inputsFrom = [
  17. thisPackage.pdf
  18. ];
  19. }