mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-02 21:54:45 +00:00
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.
25 lines
604 B
Nix
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;
|
|
};
|
|
}
|