blob: 064ff39724be65bed66e13fed82091ffa56a4125 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{ writeTextFile, pythonPackages }:
let
yamllint = pythonPackages.yamllint;
in
name: text:
writeTextFile
{
inherit name text;
checkPhase = ''
${yamllint}/bin/yamllint "$out"
'';
}
|