blob: 1651d36710e61ba9d3ccea172df8ab2fd60f55ed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "libmaxminddb";
version = "1.9.1";
src = fetchurl {
url = meta.homepage + "/releases/download/${version}/${pname}-${version}.tar.gz";
sha256 = "sha256-qAaCqJ2RX99gs10xYjL7BOvzb/8n/am9Of6KONPNPxI=";
};
meta = with lib; {
description = "C library for working with MaxMind geolocation DB files";
homepage = "https://github.com/maxmind/libmaxminddb";
license = licenses.asl20;
maintainers = teams.helsinki-systems.members;
mainProgram = "mmdblookup";
platforms = platforms.all;
};
}
|