Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 11 lines 228 B view raw
1{ runCommand, proj }: 2 3let 4 inherit (proj) pname; 5in 6runCommand "${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 ''