depot/third_party/nixpkgs/pkgs/development/libraries/pdal/tests.nix

11 lines
161 B
Nix
Raw Normal View History

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