From 3054cf7ae1cd8cb0b3d4fa4140323c193f9151ab Mon Sep 17 00:00:00 2001 From: ulic-youthlic Date: Wed, 21 Jan 2026 10:18:16 +0800 Subject: [PATCH] chore: Remove pkg `cliphist` since it updated --- _sources/generated.json | 23 +-------------- _sources/generated.nix | 12 -------- nvfetcher.toml | 4 --- overlays/modifications/cliphist.nix | 5 ---- overlays/modifications/default.nix | 1 - pkgs/cliphist'.nix | 45 ----------------------------- 6 files changed, 1 insertion(+), 89 deletions(-) delete mode 100644 overlays/modifications/cliphist.nix delete mode 100644 pkgs/cliphist'.nix diff --git a/_sources/generated.json b/_sources/generated.json index 4d6d327..bf648ec 100644 --- a/_sources/generated.json +++ b/_sources/generated.json @@ -43,27 +43,6 @@ }, "version": "aa13bda89bcd7deb9be26dc11a4cfb49543274b0" }, - "cliphist": { - "cargoLocks": null, - "date": "2025-10-11", - "extract": null, - "name": "cliphist", - "passthru": null, - "pinned": false, - "src": { - "deepClone": false, - "fetchSubmodules": false, - "leaveDotGit": false, - "name": null, - "owner": "sentriz", - "repo": "cliphist", - "rev": "efb61cb5b5a28d896c05a24ac83b9c39c96575f2", - "sha256": "sha256-y4FSl/Bj80XqCR0ZwjGEkqYUIF6zJHrYyy01XPFlzjU=", - "sparseCheckout": [], - "type": "github" - }, - "version": "efb61cb5b5a28d896c05a24ac83b9c39c96575f2" - }, "noto-sans-cjk": { "cargoLocks": null, "date": null, @@ -210,4 +189,4 @@ }, "version": "184f55dbc5320c34a56d02353410ad35a0f3e090" } -} \ No newline at end of file +} diff --git a/_sources/generated.nix b/_sources/generated.nix index b63e2a1..b7d081a 100644 --- a/_sources/generated.nix +++ b/_sources/generated.nix @@ -28,18 +28,6 @@ }; date = "2026-01-14"; }; - cliphist = { - pname = "cliphist"; - version = "efb61cb5b5a28d896c05a24ac83b9c39c96575f2"; - src = fetchFromGitHub { - owner = "sentriz"; - repo = "cliphist"; - rev = "efb61cb5b5a28d896c05a24ac83b9c39c96575f2"; - fetchSubmodules = false; - sha256 = "sha256-y4FSl/Bj80XqCR0ZwjGEkqYUIF6zJHrYyy01XPFlzjU="; - }; - date = "2025-10-11"; - }; noto-sans-cjk = { pname = "noto-sans-cjk"; version = "Serif2.003"; diff --git a/nvfetcher.toml b/nvfetcher.toml index d53afc1..4c6996a 100644 --- a/nvfetcher.toml +++ b/nvfetcher.toml @@ -30,10 +30,6 @@ src.git = "https://github.com/DreamMaoMao/wshowkeys.git" fetch.github = "top-mind/OuterWildsTextAdventureWeb" src.git = "https://github.com/top-mind/OuterWildsTextAdventureWeb.git" -[cliphist] -fetch.github = "sentriz/cliphist" -src.git = "https://github.com/sentriz/cliphist.git" - [rime-yuhaostar] fetch.url = "https://github.com/forfudan/yuhao-ime-release/releases/download/$ver/star_xingchen_$ver.zip" src.github = "forfudan/yuhao-ime-release" diff --git a/overlays/modifications/cliphist.nix b/overlays/modifications/cliphist.nix deleted file mode 100644 index 4c688e7..0000000 --- a/overlays/modifications/cliphist.nix +++ /dev/null @@ -1,5 +0,0 @@ -{outputs, ...}: _final: prev: let - inherit (prev.stdenv.hostPlatform) system; -in { - cliphist = outputs.packages."${system}".cliphist'; -} diff --git a/overlays/modifications/default.nix b/overlays/modifications/default.nix index e7126e5..c8ab3bf 100644 --- a/overlays/modifications/default.nix +++ b/overlays/modifications/default.nix @@ -10,7 +10,6 @@ in ./wshowkeys.nix # ./QQ.nix ./helix.nix - ./cliphist.nix ./zulip.nix ./nautilus.nix ./neovim-nightly.nix diff --git a/pkgs/cliphist'.nix b/pkgs/cliphist'.nix deleted file mode 100644 index 8eacb82..0000000 --- a/pkgs/cliphist'.nix +++ /dev/null @@ -1,45 +0,0 @@ -{ - srcs, - cliphist, - imagemagick, - wl-clipboard, - fuzzel, - gawk, - gnugrep, - lib, - makeWrapper, -}: let - inherit (srcs.cliphist) src date version; -in - cliphist.overrideAttrs ( - _final: prev: { - inherit src; - version = - if prev.version != "0.6.1" - then - throw '' - Please remove - '' - else "0-unstable-${date}-git${version}"; - vendorHash = "sha256-4XyDLOJHdre/1BpjgFt/W6gOlPOvKztE+MsbwE3JAaQ="; - buildInputs = - (prev.buildInputs or []) - ++ [ - makeWrapper - ]; - postInstall = '' - cp -t $out/bin/ $src/contrib/* - rm $out/bin/cliphist.service - wrapProgram $out/bin/cliphist-fuzzel-img \ - --prefix PATH : ${ - lib.makeBinPath [ - imagemagick - wl-clipboard - fuzzel - gawk - gnugrep - ] - } - ''; - } - )