First attempt at adding polybar-dwm-module (fails to build)

- Update flake.lock
- Switch from awesome back to dwm
- Attempt to modify existing polybar nix package
  to point to mihirlad55's polybar-dwm-module
This commit is contained in:
Sravan Balaji
2024-03-30 16:02:53 -04:00
parent 80473968ae
commit aa28eb8e3d
3 changed files with 23 additions and 7 deletions

View File

@@ -44,5 +44,21 @@
arandr
autorandr
unclutter-xfixes
(polybar.overrideAttrs (finalAttrs: previousAttrs: {
pname = previousAttrs.pname + "-dwm-module";
version = "3.5.2";
src = fetchFromGitHub {
owner = "mihirlad55";
repo = "polybar-dwm-module";
rev = "0c3e139ac54e081c06ef60548927e679d80d4297";
hash = "sha256-ZL7yDGGiZFGgVXZXS+d3xUDhOOd5lp2mo2ipFN92mIY=";
fetchSubmodules = true;
};
buildInputs = previousAttrs.buildInputs ++ [
jsoncpp
];
}))
];
}