2024-07-27 06:49:29 +00:00
|
|
|
{ lib
|
2022-01-19 23:45:15 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, rofi-unwrapped
|
2023-04-29 16:46:19 +00:00
|
|
|
, wayland-scanner
|
2022-01-19 23:45:15 +00:00
|
|
|
, wayland-protocols
|
|
|
|
, wayland
|
|
|
|
}:
|
|
|
|
|
|
|
|
rofi-unwrapped.overrideAttrs (oldAttrs: rec {
|
|
|
|
pname = "rofi-wayland-unwrapped";
|
2024-04-21 15:54:59 +00:00
|
|
|
version = "1.7.5+wayland3";
|
2022-01-19 23:45:15 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "lbonn";
|
|
|
|
repo = "rofi";
|
|
|
|
rev = version;
|
|
|
|
fetchSubmodules = true;
|
2024-07-27 06:49:29 +00:00
|
|
|
hash = "sha256-pKxraG3fhBh53m+bLPzCigRr6dBcH/A9vbdf67CO2d8=";
|
2022-01-19 23:45:15 +00:00
|
|
|
};
|
|
|
|
|
2023-04-29 16:46:19 +00:00
|
|
|
nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ wayland-scanner ];
|
|
|
|
buildInputs = oldAttrs.buildInputs ++ [ wayland wayland-protocols ];
|
2022-01-19 23:45:15 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Window switcher, run dialog and dmenu replacement for Wayland";
|
|
|
|
homepage = "https://github.com/lbonn/rofi";
|
|
|
|
license = licenses.mit;
|
2023-11-16 04:20:00 +00:00
|
|
|
mainProgram = "rofi";
|
2022-01-19 23:45:15 +00:00
|
|
|
maintainers = with maintainers; [ bew ];
|
|
|
|
platforms = with platforms; linux;
|
|
|
|
};
|
|
|
|
})
|