Files
to-hen/shell.nix

11 lines
239 B
Nix
Raw Normal View History

2019-10-01 19:22:59 +02:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
pandoc
python3Packages.beautifulsoup4
python3Packages.requests
python3Packages.lxml
];
shellHook = "export HISTFILE=${toString ./.history}";
}