mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 10:43:27 +00:00
11 lines
161 B
Nix
11 lines
161 B
Nix
{ runCommand, pdal }:
|
|
|
|
let
|
|
inherit (pdal) pname;
|
|
in
|
|
runCommand "${pname}-tests" { meta.timeout = 60; }
|
|
''
|
|
${pdal}/bin/pdal --drivers
|
|
touch $out
|
|
''
|