{ pkgs ? import {} }: with pkgs; stdenv.mkDerivation rec { name = "ethulhu-co-uk-${version}"; version = "latest"; src = ./.; buildInputs = [ python38 python38Packages.jinja2 python38Packages.markdown python38Packages.pyaml ]; patchPhase = '' patchShebangs thrust patchShebangs generate-sitemap ''; buildPhase = '' make -j ''; installPhase = '' mkdir -p $out cp -r ./build/* $out ''; }