From 192a9b6e1d004a04d409ab58e333af46a699625b Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Mon, 12 Dec 2022 10:16:35 +0800 Subject: [PATCH] shells/latex: init shell --- shells/default.nix | 1 + shells/latex.nix | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 shells/latex.nix diff --git a/shells/default.nix b/shells/default.nix index 3d46e0ed..fc902a64 100644 --- a/shells/default.nix +++ b/shells/default.nix @@ -12,6 +12,7 @@ with pkgs; { gtk3 = callPackage ./gtk.nix { gtk = gtk3; libportal-gtk = libportal-gtk3; }; gtk4 = callPackage ./gtk.nix { gtk = gtk4; wrapGAppsHook = wrapGAppsHook4; libportal-gtk = libportal-gtk4; }; hugo = callPackage ./hugo.nix { }; + latex = callPackage ./latex.nix { }; lua_5_2 = callPackage ./lua.nix { lua = lua52Packages.lua; }; lua_5_3 = callPackage ./lua.nix { lua = lua53Packages.lua; }; rust = callPackage ./rust.nix { }; diff --git a/shells/latex.nix b/shells/latex.nix new file mode 100644 index 00000000..a41c0331 --- /dev/null +++ b/shells/latex.nix @@ -0,0 +1,8 @@ +# Ripperootskees for the space. +{ mkShell, texlive }: + +mkShell { + packages = [ + texlive.combined.scheme-full + ]; +}