5557ff764c
GitOrigin-RevId: 988cc958c57ce4350ec248d2d53087777f9e1949
31 lines
794 B
Nix
31 lines
794 B
Nix
{ lib, stdenvNoCC, fetchurl, nix-update-script }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "clash-geoip";
|
|
version = "20230212";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/Dreamacro/maxmind-geoip/releases/download/${version}/Country.mmdb";
|
|
sha256 = "sha256-Tnma6tpET4Vrm5G8KmLpsVnpD2JIKts56kZQsBIbRZ8=";
|
|
};
|
|
|
|
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 = with maintainers; [ candyc1oud ];
|
|
};
|
|
}
|