my blog lives here now
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
542 B

2 years ago
  1. { pkgs ? import <nixpkgs> { }, stdenv ? pkgs.stdenv }:
  2. let
  3. site = pkgs.haskellPackages.callCabal2nix "blag-site" ./. { };
  4. our-texlive = with pkgs; texlive.combine {
  5. inherit (texlive)
  6. collection-basic
  7. collection-latex
  8. xcolor
  9. preview
  10. pgf tikz-cd
  11. mathpazo
  12. varwidth xkeyval standalone
  13. jknapltx;
  14. };
  15. in
  16. stdenv.mkDerivation {
  17. name = "blag";
  18. src = ./.;
  19. buildInputs = with pkgs; [
  20. poppler_utils
  21. rubber
  22. nodePackages.katex
  23. our-texlive
  24. site
  25. ];
  26. }