the-source/shell.nix

19 lines
430 B
Nix
Raw Normal View History

2020-11-12 12:13:24 -05:00
let
pkgs = import <nixpkgs> { };
nur = import (builtins.fetchTarball
"https://github.com/nix-community/NUR/archive/master.tar.gz") {
inherit pkgs;
};
tex = with pkgs;
texlive.combine { inherit (texlive) scheme-medium bitter titlesec; };
in pkgs.mkShell {
buildInputs = with pkgs; [
calibre
nur.repos.mic92.pandoc-bin
tex
lua5_3
lua53Packages.lua-lsp
lua53Packages.lua-toml
];
2020-11-12 12:13:24 -05:00
}