23 lines
410 B
Nix
23 lines
410 B
Nix
{
|
|
description = "LaTeX paper build environment";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs";
|
|
};
|
|
|
|
outputs =
|
|
{ self, nixpkgs }:
|
|
let
|
|
system = "x86_64-linux";
|
|
pkgs = import nixpkgs { inherit system; };
|
|
in
|
|
{
|
|
devShells.${system}.default = pkgs.mkShell {
|
|
name = "latex";
|
|
buildInputs = with pkgs; [
|
|
texliveFull
|
|
];
|
|
};
|
|
};
|
|
}
|