nixpkgs/pkgs/development/libraries/pdal/tests.nix
2024-01-08 14:16:02 +01:00

11 lines
161 B
Nix

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