Skip to content

Instantly share code, notes, and snippets.

@Mic92
Created October 18, 2017 23:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mic92/54c300994cad501e64f2c9635dce047a to your computer and use it in GitHub Desktop.
Save Mic92/54c300994cad501e64f2c9635dce047a to your computer and use it in GitHub Desktop.
with import <nixpkgs> {};
stdenv.mkDerivation rec {
name = "env";
# Customizable development requirements
buildInputs = [
libxml2
notmuch
poppler_utils # for pdftohtml
python3
] ++ (with python3Packages; [
beautifulsoup4
lxml
]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment