2016-09-14 19:15:19 +02:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libmaxminddb-${version}";
|
2018-02-27 05:44:02 +01:00
|
|
|
version = "1.3.2";
|
2016-09-14 19:15:19 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = meta.homepage + "/releases/download/${version}/${name}.tar.gz";
|
2018-02-27 05:44:02 +01:00
|
|
|
sha256 = "1w60yq26x3yr3abxk7fwqqaggw8dc98595jdliaa3kyqdfm83y76";
|
2016-09-14 19:15:19 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "C library for working with MaxMind geolocation DB files";
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = https://github.com/maxmind/libmaxminddb;
|
2016-09-14 19:15:19 +02:00
|
|
|
license = licenses.apsl20;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.vcunat ];
|
|
|
|
};
|
|
|
|
}
|