10 lines
153 B
Nix
10 lines
153 B
Nix
|
|
{ runCommand, pdal }:
|
||
|
|
|
||
|
|
let
|
||
|
|
inherit (pdal) pname;
|
||
|
|
in
|
||
|
|
runCommand "${pname}-tests" { meta.timeout = 60; } ''
|
||
|
|
${pdal}/bin/pdal --drivers
|
||
|
|
touch $out
|
||
|
|
''
|