mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
89b3218101
Apache 2.0 and not Apple Public Source License 2.0
20 lines
548 B
Nix
20 lines
548 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libmaxminddb";
|
|
version = "1.3.2";
|
|
|
|
src = fetchurl {
|
|
url = meta.homepage + "/releases/download/${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "1w60yq26x3yr3abxk7fwqqaggw8dc98595jdliaa3kyqdfm83y76";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "C library for working with MaxMind geolocation DB files";
|
|
homepage = https://github.com/maxmind/libmaxminddb;
|
|
license = licenses.asl20;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.vcunat ];
|
|
};
|
|
}
|