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

20 lines
547 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2016-09-14 18:15:19 +01:00
stdenv.mkDerivation rec {
pname = "libmaxminddb";
2021-01-20 01:28:45 +00:00
version = "1.5.0";
2016-09-14 18:15:19 +01:00
src = fetchurl {
url = meta.homepage + "/releases/download/${version}/${pname}-${version}.tar.gz";
2021-01-20 01:28:45 +00:00
sha256 = "sha256-fFbnkf8qZVIV5+04ZLH/3X00o4g1d57+1WpC8Fa9WKo=";
2016-09-14 18:15:19 +01:00
};
meta = with lib; {
2016-09-14 18:15:19 +01:00
description = "C library for working with MaxMind geolocation DB files";
homepage = "https://github.com/maxmind/libmaxminddb";
license = licenses.asl20;
2016-09-14 18:15:19 +01:00
platforms = platforms.all;
maintainers = [ maintainers.vcunat ];
};
}