this repo has no description
1{ pkgs ? import <nixpkgs> {}, ... }:
2
3with pkgs;
4
5stdenv.mkDerivation {
6 name = "hauleth-blog";
7 src = ./.;
8
9 nativeBuildInputs = [ git ];
10 buildInputs = [ zola ];
11
12 buildPhase = ''
13 git submodule update --init --recursive --depth=1
14 zola build -o $out
15 '';
16
17 dontInstall = true;
18
19 passthru = {
20 inherit zola;
21 };
22}