From a3bca5ea5a86b30a9bd5231dfaf32da8659eeae8 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Fri, 21 Oct 2022 00:09:07 +0100 Subject: [PATCH] shapelib: enable tests --- pkgs/development/libraries/shapelib/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/libraries/shapelib/default.nix b/pkgs/development/libraries/shapelib/default.nix index c9793d5440b3..f0afda7a9001 100644 --- a/pkgs/development/libraries/shapelib/default.nix +++ b/pkgs/development/libraries/shapelib/default.nix @@ -21,6 +21,11 @@ stdenv.mkDerivation rec { }) ]; + doCheck = true; + preCheck = '' + patchShebangs tests contrib/tests + ''; + meta = with lib; { description = "C Library for reading, writing and updating ESRI Shapefiles"; homepage = "http://shapelib.maptools.org/";