about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/pdal/tests.nix
blob: 1f71626856b38e37c964cb2995de0912049a1c9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ runCommand, pdal }:

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