anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / development / libraries / proj / tests.nix
blob38126f06dd4d67d646cb90d2a4785e5f718e89c4
1 { runCommand, proj }:
3 let
4   inherit (proj) pname;
5 in
6 runCommand "${pname}-tests" { meta.timeout = 60; }
7   ''
8     ${proj}/bin/projinfo EPSG:4326 \
9       | grep '+proj=longlat +datum=WGS84 +no_defs +type=crs'
10     touch $out
11   ''