flakes/pandoc/flake.nix

24 lines
521 B
Nix
Raw Normal View History

2023-06-14 17:41:41 +02:00
{
2024-12-28 20:08:29 +01:00
description = "LaTeX flake";
2023-06-14 17:41:41 +02:00
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils}:
flake-utils.lib.eachDefaultSystem
(system:
let
pkgs = import nixpkgs {
inherit system;
};
in {
devShells.default = pkgs.mkShell {
packages = with pkgs; [
texlive.combined.scheme-full
2024-12-28 20:08:29 +01:00
pgfplots
2023-06-14 17:41:41 +02:00
];
};
}
);
}