the-source/shell.nix
Christine Dodrill 7772a447d5 0.3.0
2020-11-12 12:13:24 -05:00

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 ];
}