about summary refs log tree commit diff
path: root/shell.nix
blob: 7dcfe0c0d7293d6bc6d5ffec826c5ef969afa4b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
let
  pkgs = import (builtins.fetchTarball {
    url = "https://github.com/NixOS/nixpkgs/archive/refs/heads/nixos-21.05-small.tar.gz";
    sha256 = "18glj62yy0l917092izcby6pdj56yzq8sdh3c525kbf14zqa7q3j";
  }) { };
in
  with pkgs;
  mkShell {
    buildInputs = [
      python37
      (texlive.combine {
        inherit (texlive) scheme-minimal pdfcrop pdfjam pdfbook2;
      })
      ghostscript
      (callPackage ./nix/neatroff.nix { })
    ];
  }