57bccb3cb8
* 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
20 lines
501 B
Nix
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 ];
|
|
};
|
|
}
|