it makes more sense upgrading to unstable

This commit is contained in:
chloe 2025-03-03 08:58:57 +01:00
parent 1251054fd6
commit 851eaf80ee
4 changed files with 32 additions and 37 deletions

View file

@ -1,19 +1,13 @@
{ config, lib, pkgs, ... }:
{
let foot-next = pkgs.foot.overrideAttrs (oldAttrs: rec {
final: prev: {
foot-next = pkgs.foot.overrideAttrs (oldAttrs: rec {
inherit (oldAttrs) name;
version = "1.20.2";
src = pkgs.fetchFromGitea {
domain = "codeberg.org";
owner = "dnkl";
repo = "foot";
rev = version;
hash = "sha256-tnBoRRKHcuvBSnqvJ/772UWuepvpUiSg6t+gx4MZ0VQ=";
domain = "codeberg.org";
owner = "dnkl";
repo = "foot";
rev = version;
hash = "sha256-tnBoRRKHcuvBSnqvJ/772UWuepvpUiSg6t+gx4MZ0VQ=";
};
}) in
nixpkgs.overlays = [(
final: previous: {
foot = foot-next;
}
)];
}
});
}