nixpkgs/pkgs/data/misc/clash-geoip/default.nix

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

32 lines
794 B
Nix
Raw Normal View History

2022-12-17 09:23:52 +00:00
{ lib, stdenvNoCC, fetchurl, nix-update-script }:
2022-10-02 05:30:51 +00:00
2022-12-09 10:09:06 +00:00
stdenvNoCC.mkDerivation rec {
2022-10-02 05:30:51 +00:00
pname = "clash-geoip";
2023-03-13 19:27:01 +00:00
version = "20230312";
2022-10-02 05:30:51 +00:00
2022-12-09 10:09:06 +00:00
src = fetchurl {
2022-10-02 05:30:51 +00:00
url = "https://github.com/Dreamacro/maxmind-geoip/releases/download/${version}/Country.mmdb";
2023-03-13 19:27:01 +00:00
sha256 = "sha256-Y/glz6HUfjox9Mn+gPzA8+tUHqV/KkIInUn4SyajUiE=";
2022-10-02 05:30:51 +00:00
};
2022-12-09 10:09:06 +00:00
dontUnpack = true;
2022-10-02 05:30:51 +00:00
installPhase = ''
runHook preInstall
mkdir -p $out/etc/clash
2022-12-09 10:09:06 +00:00
install -Dm 0644 $src -D $out/etc/clash/Country.mmdb
2022-10-02 05:30:51 +00:00
runHook postInstall
'';
2022-12-17 09:23:52 +00:00
passthru = {
updateScript = nix-update-script { };
2022-12-17 09:23:52 +00:00
};
2022-12-09 10:18:18 +00:00
2022-10-02 05:30:51 +00:00
meta = with lib; {
description = "A GeoLite2 data created by MaxMind";
homepage = "https://github.com/Dreamacro/maxmind-geoip";
license = licenses.unfree;
maintainers = with maintainers; [ candyc1oud ];
};
}