1{ stdenv, staticjinja }:
2
3stdenv.mkDerivation {
4 name = "staticjinja-test-minimal-template";
5 meta.timeout = 30;
6 buildCommand = ''
7 ${staticjinja}/bin/staticjinja build --srcpath ${./templates}
8 grep 'Hello World!' index
9 touch $out
10 '';
11}