fix(foot): add fcft to auto updated packages

This commit is contained in:
matt1432 2025-03-13 14:57:13 -04:00
parent f7ee925514
commit eff17eaef7
5 changed files with 28 additions and 13 deletions

View file

@ -6,6 +6,8 @@
selfPackages = {
coloryou = final.callPackage ./coloryou {};
fcft = final.callPackage ./fcft {};
gpu-screen-recorder = final.callPackage ./gpu-screen-recorder/gpu-screen-recorder.nix {
inherit (inputs) gpu-screen-recorder-src;
};

16
packages/fcft/default.nix Normal file
View file

@ -0,0 +1,16 @@
{
fcft,
fetchFromGitea,
...
}:
fcft.overrideAttrs (o: rec {
version = "3.3.0";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "dnkl";
repo = o.pname;
rev = version;
hash = "sha256-spK75cT6x0rHcJT2YxX1e39jvx4uQKL/b4CHO7bon4s=";
};
})