87f9c27ba9
GitOrigin-RevId: fe2ecaf706a5907b5e54d979fbde4924d84b65fc
31 lines
764 B
Nix
31 lines
764 B
Nix
{ lib, stdenvNoCC, fetchurl, nix-update-script }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "clash-geoip";
|
|
version = "20230312";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/Dreamacro/maxmind-geoip/releases/download/${version}/Country.mmdb";
|
|
sha256 = "sha256-Y/glz6HUfjox9Mn+gPzA8+tUHqV/KkIInUn4SyajUiE=";
|
|
};
|
|
|
|
dontUnpack = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/etc/clash
|
|
install -Dm 0644 $src -D $out/etc/clash/Country.mmdb
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A GeoLite2 data created by MaxMind";
|
|
homepage = "https://github.com/Dreamacro/maxmind-geoip";
|
|
license = licenses.unfree;
|
|
maintainers = [];
|
|
};
|
|
}
|