ironbar: Overlay to newer version for Hyprland v0.40.0+

This is part of updating Hyprland to v0.41.0.
This commit is contained in:
Donovan Glover 2024-06-13 05:13:06 -04:00
parent 96b3752117
commit ce5f3ea6d7
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

18
overlays/ironbar.nix Normal file
View File

@ -0,0 +1,18 @@
final: prev: {
ironbar = prev.ironbar.overrideAttrs (oldAttrs: rec {
version = "0.15.1-unstable-2024-06-03";
src = prev.fetchFromGitHub {
owner = "JakeStanger";
repo = "ironbar";
rev = "a93108b7e70694583897b755aacf73bd2d728656";
hash = "sha256-VbNZkG8KR2iFG+93f+t5+OQIaS5k81WyhYL0z7bdOfY=";
};
cargoDeps = oldAttrs.cargoDeps.overrideAttrs (prev.lib.const {
name = "${oldAttrs.pname}-${version}-vendor.tar.gz";
inherit src;
outputHash = "sha256-J7T00RV7mFCX0/e7n14LspoatPmlbNcB4u5UWWe8gSg=";
});
});
}