nixpkgs/pkgs/development/libraries/shapelib/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

20 lines
501 B
Nix

{ stdenv, fetchurl, proj }:
stdenv.mkDerivation rec {
name = "shapelib-1.4.1";
src = fetchurl {
url = "https://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 ];
};
}