Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ runCommand, proj }: 2 3let 4 inherit (proj) pname; 5in 6runCommand "${pname}-tests" { meta.timeout = 60; } '' 7 ${proj}/bin/projinfo EPSG:4326 \ 8 | grep '+proj=longlat +datum=WGS84 +no_defs +type=crs' 9 touch $out 10''