summary refs log tree commit diff
path: root/pkgs/development/libraries/shapelib
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-02-27 15:56:30 -0800
committerRyan Mulligan <ryan@ryantm.com>2018-02-27 15:56:30 -0800
commit7f2d49ce5b75678f4f45e762d62de49f7fe82b7e (patch)
tree5090e15d1e5d645129982f0d916b9065ef34b388 /pkgs/development/libraries/shapelib
parent6a101342051182e66587249cfd8c4800b0746c82 (diff)
downloadnixpkgs-7f2d49ce5b75678f4f45e762d62de49f7fe82b7e.tar
nixpkgs-7f2d49ce5b75678f4f45e762d62de49f7fe82b7e.tar.gz
nixpkgs-7f2d49ce5b75678f4f45e762d62de49f7fe82b7e.tar.bz2
nixpkgs-7f2d49ce5b75678f4f45e762d62de49f7fe82b7e.tar.lz
nixpkgs-7f2d49ce5b75678f4f45e762d62de49f7fe82b7e.tar.xz
nixpkgs-7f2d49ce5b75678f4f45e762d62de49f7fe82b7e.tar.zst
nixpkgs-7f2d49ce5b75678f4f45e762d62de49f7fe82b7e.zip
shapelib: 1.4.0 -> 1.4.1
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/dc39wljsqrwrdnz2c0072wsch1qdf03v-shapelib-1.4.1/bin/dbfcreate -h` got 0 exit code
- ran `/nix/store/dc39wljsqrwrdnz2c0072wsch1qdf03v-shapelib-1.4.1/bin/dbfcreate --help` got 0 exit code
- ran `/nix/store/dc39wljsqrwrdnz2c0072wsch1qdf03v-shapelib-1.4.1/bin/dbfcreate help` got 0 exit code
- ran `/nix/store/dc39wljsqrwrdnz2c0072wsch1qdf03v-shapelib-1.4.1/bin/dbfinfo -h` got 0 exit code
- ran `/nix/store/dc39wljsqrwrdnz2c0072wsch1qdf03v-shapelib-1.4.1/bin/dbfinfo --help` got 0 exit code
- ran `/nix/store/dc39wljsqrwrdnz2c0072wsch1qdf03v-shapelib-1.4.1/bin/dbfinfo help` got 0 exit code
- found 1.4.1 with grep in /nix/store/dc39wljsqrwrdnz2c0072wsch1qdf03v-shapelib-1.4.1
- found 1.4.1 in filename of file in /nix/store/dc39wljsqrwrdnz2c0072wsch1qdf03v-shapelib-1.4.1

cc "@ehmry"
Diffstat (limited to 'pkgs/development/libraries/shapelib')
-rw-r--r--pkgs/development/libraries/shapelib/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/shapelib/default.nix b/pkgs/development/libraries/shapelib/default.nix
index b481bd0cf65..3234d1bb89b 100644
--- a/pkgs/development/libraries/shapelib/default.nix
+++ b/pkgs/development/libraries/shapelib/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, proj }:
 
 stdenv.mkDerivation rec {
-  name = "shapelib-1.4.0";
+  name = "shapelib-1.4.1";
 
   src = fetchurl {
     url = "http://download.osgeo.org/shapelib/${name}.tar.gz";
-    sha256 = "18d7j5pn5srika7q3f90j0l2l4526xsjd64pin6z2b0gd7rdbp9y";
+    sha256 = "1cr3b5jfglwisbyzj7fnxp9xysqad0fcmcqvqaja6qap6qblijd4";
   };
 
   buildInputs =  [ proj ];