mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-23 00:34:24 +01:00
ce5f3ea6d7
This is part of updating Hyprland to v0.41.0.
19 lines
569 B
Nix
19 lines
569 B
Nix
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=";
|
|
});
|
|
});
|
|
}
|