summary refs log tree commit diff
path: root/pkgs/data/misc/dbip-country-lite/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/data/misc/dbip-country-lite/default.nix')
-rw-r--r--pkgs/data/misc/dbip-country-lite/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/data/misc/dbip-country-lite/default.nix b/pkgs/data/misc/dbip-country-lite/default.nix
new file mode 100644
index 00000000000..ffa2ec24974
--- /dev/null
+++ b/pkgs/data/misc/dbip-country-lite/default.nix
@@ -0,0 +1,36 @@
+{ lib
+, stdenvNoCC
+, fetchurl
+, dbip-country-lite
+}:
+
+stdenvNoCC.mkDerivation rec {
+  pname = "dbip-country-lite";
+  version = "2023-06";
+
+  src = fetchurl {
+    url = "https://download.db-ip.com/free/dbip-country-lite-${version}.mmdb.gz";
+    hash = "sha256-H+f7OhI03qhgpldF05Nc5ohPIPNhyVRCwiVqeWkvIbc=";
+  };
+
+  dontUnpack = true;
+
+  installPhase = ''
+    runHook preBuild
+
+    gzip -c -d "$src" > dbip-country-lite.mmdb
+    install -Dm444 dbip-country-lite.mmdb "$out/share/dbip/dbip-country-lite.mmdb"
+
+    runHook postBuild
+  '';
+
+  passthru.mmdb = "${dbip-country-lite}/share/dbip/dbip-country-lite.mmdb";
+
+  meta = with lib; {
+    description = "The free IP to Country Lite database by DB-IP";
+    homepage = "https://db-ip.com/db/download/ip-to-country-lite";
+    license = licenses.cc-by-40;
+    maintainers = with maintainers; [ nickcao ];
+    platforms = platforms.all;
+  };
+}