Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

shapelib: 1.5.0 -> 1.6.0

+2 -11
+2 -11
pkgs/development/libraries/shapelib/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchurl 4 - , fetchpatch 5 4 }: 6 5 7 6 stdenv.mkDerivation rec { 8 7 pname = "shapelib"; 9 - version = "1.5.0"; 8 + version = "1.6.0"; 10 9 11 10 src = fetchurl { 12 11 url = "https://download.osgeo.org/shapelib/shapelib-${version}.tar.gz"; 13 - sha256 = "1qfsgb8b3yiqwvr6h9m81g6k9fjhfys70c22p7kzkbick20a9h0z"; 12 + sha256 = "sha256-GVKLJDdyQXBWNzIMNnlDAxrVCIZl0fsOHqpSpxJkpsQ="; 14 13 }; 15 - 16 - patches = [ 17 - (fetchpatch { 18 - name = "CVE-2022-0699.patch"; 19 - url = "https://github.com/OSGeo/shapelib/commit/c75b9281a5b9452d92e1682bdfe6019a13ed819f.patch"; 20 - sha256 = "sha256-zJ7JHUtInA5q/RbkSs1DqVK+UQi2vIw2t1jqxocnQQI="; 21 - }) 22 - ]; 23 14 24 15 doCheck = true; 25 16 preCheck = ''