nixpkgs/pkgs/development/libraries/shapelib/default.nix
Ryan Mulligan 7f2d49ce5b 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"
2018-02-27 15:56:30 -08:00

20 lines
500 B
Nix

{ stdenv, fetchurl, proj }:
stdenv.mkDerivation rec {
name = "shapelib-1.4.1";
src = fetchurl {
url = "http://download.osgeo.org/shapelib/${name}.tar.gz";
sha256 = "1cr3b5jfglwisbyzj7fnxp9xysqad0fcmcqvqaja6qap6qblijd4";
};
buildInputs = [ proj ];
meta = with stdenv.lib; {
description = "C Library for reading, writing and updating ESRI Shapefiles";
homepage = http://shapelib.maptools.org/;
license = licenses.gpl2;
maintainers = [ maintainers.ehmry ];
};
}