nixpkgs/pkgs/development/libraries/libmaxminddb/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
547 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2016-09-14 17:15:19 +00:00
stdenv.mkDerivation rec {
pname = "libmaxminddb";
2021-04-30 02:44:04 +00:00
version = "1.6.0";
2016-09-14 17:15:19 +00:00
src = fetchurl {
url = meta.homepage + "/releases/download/${version}/${pname}-${version}.tar.gz";
2021-04-30 02:44:04 +00:00
sha256 = "sha256-diCsGHxZHOIbzXvzUjdqPFapM+aEVYofa+9L1PP5gmc=";
2016-09-14 17:15:19 +00:00
};
meta = with lib; {
2016-09-14 17:15:19 +00:00
description = "C library for working with MaxMind geolocation DB files";
homepage = "https://github.com/maxmind/libmaxminddb";
license = licenses.asl20;
2016-09-14 17:15:19 +00:00
platforms = platforms.all;
maintainers = [ maintainers.vcunat ];
};
}