Use rime-ice in nixpkgs instead of self-packaged

- remove package rime-ice
- remove overlay of rime-ice
- regenerate nvfetcher
- add configuration for rime-ice
- add zhwiki and moegirl as dict
This commit is contained in:
ulic-youthlic 2025-06-20 03:38:56 +08:00
parent ebb171dc3f
commit d390953280
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
12 changed files with 110 additions and 71 deletions

View file

@ -22,7 +22,7 @@
},
"TrackersListCollection": {
"cargoLocks": null,
"date": "2025-06-19",
"date": "2025-06-20",
"extract": null,
"name": "TrackersListCollection",
"passthru": null,
@ -34,14 +34,14 @@
"name": null,
"owner": "XIU2",
"repo": "TrackersListCollection",
"rev": "68f0b601a7e8e30ca3e59d5d0b0c0c159f494fae",
"sha256": "sha256-+ve7SYZPvkv29PS91tISjyuCL6CggUv7RutfyITGkQE=",
"rev": "434c1455c6877e91d2f399e3f8ec52727974167d",
"sha256": "sha256-UcDxpNWGO72pS54SsmaF09NWmUYo8y+peGaOVKMSxZA=",
"sparseCheckout": [
"all.txt"
],
"type": "github"
},
"version": "68f0b601a7e8e30ca3e59d5d0b0c0c159f494fae"
"version": "434c1455c6877e91d2f399e3f8ec52727974167d"
},
"cliphist": {
"cargoLocks": null,
@ -130,27 +130,6 @@
},
"version": "Serif2.003"
},
"rime-ice": {
"cargoLocks": null,
"date": "2025-06-16",
"extract": null,
"name": "rime-ice",
"passthru": null,
"pinned": false,
"src": {
"deepClone": false,
"fetchSubmodules": false,
"leaveDotGit": false,
"name": null,
"owner": "iDvel",
"repo": "rime-ice",
"rev": "eeb559e70b7775d4d0b89003b3c9b896a447092f",
"sha256": "sha256-HvjDw2BNvMbu/J0NINN2/+iWCv3pYt+HrtlJPWfhERA=",
"sparseCheckout": [],
"type": "github"
},
"version": "eeb559e70b7775d4d0b89003b3c9b896a447092f"
},
"spotx": {
"cargoLocks": null,
"date": "2025-06-18",

View file

@ -15,18 +15,18 @@
};
TrackersListCollection = {
pname = "TrackersListCollection";
version = "68f0b601a7e8e30ca3e59d5d0b0c0c159f494fae";
version = "434c1455c6877e91d2f399e3f8ec52727974167d";
src = fetchFromGitHub {
owner = "XIU2";
repo = "TrackersListCollection";
rev = "68f0b601a7e8e30ca3e59d5d0b0c0c159f494fae";
rev = "434c1455c6877e91d2f399e3f8ec52727974167d";
fetchSubmodules = false;
deepClone = false;
leaveDotGit = false;
sparseCheckout = [ "all.txt" ];
sha256 = "sha256-+ve7SYZPvkv29PS91tISjyuCL6CggUv7RutfyITGkQE=";
sha256 = "sha256-UcDxpNWGO72pS54SsmaF09NWmUYo8y+peGaOVKMSxZA=";
};
date = "2025-06-19";
date = "2025-06-20";
};
cliphist = {
pname = "cliphist";
@ -82,18 +82,6 @@
sha256 = "sha256-mfbBSdJrUCZiUUmsmndtEW6H3z6KfBn+dEftBySf2j4=";
};
};
rime-ice = {
pname = "rime-ice";
version = "eeb559e70b7775d4d0b89003b3c9b896a447092f";
src = fetchFromGitHub {
owner = "iDvel";
repo = "rime-ice";
rev = "eeb559e70b7775d4d0b89003b3c9b896a447092f";
fetchSubmodules = false;
sha256 = "sha256-HvjDw2BNvMbu/J0NINN2/+iWCv3pYt+HrtlJPWfhERA=";
};
date = "2025-06-16";
};
spotx = {
pname = "spotx";
version = "181fd7fc8fe838237660a46ae096570d869bc30f";

View file

@ -13,7 +13,6 @@ in
pinentry-selector = callPackage ./pinentry-selector.nix {};
helix = callPackage ./helix {};
juicity = callPackage ./juicity.nix {};
rime-ice = callPackage ./rime-ice.nix {};
spotifyx = callPackage ./spotifyx.nix {};
radicle-explorer = callPackage ./radicle-explorer.nix {};
TrackersListCollection = callPackage ./TrackersListCollection.nix {};

View file

@ -7,10 +7,6 @@ src.git = "https://github.com/kayhide/tree-sitter-idris"
fetch.git = "https://github.com/kayhide/tree-sitter-idris"
passthru.name = "idris"
[rime-ice]
src.git = "https://github.com/iDvel/rime-ice.git"
fetch.github = "iDvel/rime-ice"
[noto-serif-cjk]
src.github = "notofonts/noto-cjk"
fetch.github = "notofonts/noto-cjk"

View file

@ -1,18 +0,0 @@
{
srcs,
stdenvNoCC,
}: let
source = srcs.rime-ice;
in
stdenvNoCC.mkDerivation {
inherit (source) pname version src;
installPhase = ''
runHook preInstall
mkdir -p $out/share/rime-data
cp -r * $out/share/rime-data/
runHook postInstall
'';
}