feat: add shell version

This commit is contained in:
Kierán Meinhardt
2019-10-01 19:22:59 +02:00
parent a5426f8e51
commit bed2a8a40d
4 changed files with 109 additions and 16 deletions

10
shell.nix Normal file
View File

@@ -0,0 +1,10 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
pandoc
python3Packages.beautifulsoup4
python3Packages.requests
python3Packages.lxml
];
shellHook = "export HISTFILE=${toString ./.history}";
}