chore: import kevin

This commit is contained in:
Kierán Meinhardt
2020-10-17 22:07:51 +02:00
6 changed files with 178 additions and 0 deletions

10
kevin/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}";
}