12 lines
352 B
Nix
12 lines
352 B
Nix
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 ];
|
|
}
|