mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 06:30:18 +02:00
13 lines
333 B
Nix
13 lines
333 B
Nix
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=";
|
|
};
|
|
});
|
|
}
|