depot/third_party/nixpkgs/pkgs/by-name/pd/pdal/tests.nix

9 lines
153 B
Nix

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