flakes/overlays/rofi.nix

14 lines
323 B
Nix
Raw Normal View History

2021-12-07 14:02:50 +07:00
self: super: {
rofi-unwrapped = super.rofi-unwrapped.overrideAttrs (_: rec {
version = "1.7.2";
src = super.fetchFromGitHub {
owner = "davatorium";
repo = "rofi";
rev = version;
fetchSubmodules = true;
sha256 = "0yarkzhn7vxqxafmz196kvklzwdxygbhd0d29gxm7lrfba8brdxy";
};
});
}