Files
nixpkgs/pkgs/by-name/li/libmaxminddb/package.nix
Janne Heß 5a6d0ee976 treewide: Drop a lot of my maintainership
I do not have the time or energy to handle all of this. Let alone my
GitHub notifications. This PR is in good faith and does not refer to
anything community-related. I will keep on doing nixpkgs work but the
pile of shame (let's call it that) needs to be cleaned. Thanks to
@mweinelt which whom I had a discussion and who made me aware of this
issue.
2026-08-12 16:24:54 +02:00

25 lines
604 B
Nix

{
lib,
stdenv,
fetchurl,
}:
stdenv.mkDerivation rec {
pname = "libmaxminddb";
version = "1.13.3";
src = fetchurl {
url = meta.homepage + "/releases/download/${version}/libmaxminddb-${version}.tar.gz";
sha256 = "sha256-pmUC6nbq2+F/LNb9cIlGd3JTly0q6BV97hsjovtSgXE=";
};
meta = {
description = "C library for working with MaxMind geolocation DB files";
homepage = "https://github.com/maxmind/libmaxminddb";
license = lib.licenses.asl20;
mainProgram = "mmdblookup";
maintainers = with lib.maintainers; [ helsinki-Jo ];
platforms = lib.platforms.all;
};
}