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

let
  inherit (proj) pname;
in
runCommand "${pname}-tests" { meta.timeout = 60; }
  ''
    ${proj}/bin/projinfo EPSG:4326 \
      | grep '+proj=longlat +datum=WGS84 +no_defs +type=crs'
    touch $out
  ''