0eeabdeb66
GitOrigin-RevId: c07b471b52be8fbc49a7dc194e9b37a6e19ee04d
11 lines
254 B
Nix
11 lines
254 B
Nix
{ stdenv, staticjinja }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "staticjinja-test-minimal-template";
|
|
meta.timeout = 30;
|
|
buildCommand = ''
|
|
${staticjinja}/bin/staticjinja build --srcpath ${./templates}
|
|
grep 'Hello World!' index
|
|
touch $out
|
|
'';
|
|
}
|