44daadff50
Add simple package test by running proj CLI tool. This change also improves derivation overriding behavior by using `finalAttrs` function. Co-authored-by: Robert Scott <github@humanleg.org.uk>
11 lines
228 B
Nix
11 lines
228 B
Nix
{ 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
|
|
''
|