Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
34 lines
927 B
Nix
34 lines
927 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, rofi-unwrapped
|
|
, wayland-scanner
|
|
, pkg-config
|
|
, wayland-protocols
|
|
, wayland
|
|
}:
|
|
|
|
rofi-unwrapped.overrideAttrs (oldAttrs: rec {
|
|
pname = "rofi-wayland-unwrapped";
|
|
version = "1.7.5+wayland3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lbonn";
|
|
repo = "rofi";
|
|
rev = version;
|
|
fetchSubmodules = true;
|
|
hash = "sha256-pKxraG3fhBh53m+bLPzCigRr6dBcH/A9vbdf67CO2d8=";
|
|
};
|
|
|
|
depsBuildBuild = oldAttrs.depsBuildBuild ++ [ pkg-config ];
|
|
nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ wayland-protocols wayland-scanner ];
|
|
buildInputs = oldAttrs.buildInputs ++ [ wayland wayland-protocols ];
|
|
|
|
meta = with lib; {
|
|
description = "Window switcher, run dialog and dmenu replacement for Wayland";
|
|
homepage = "https://github.com/lbonn/rofi";
|
|
license = licenses.mit;
|
|
mainProgram = "rofi";
|
|
maintainers = with maintainers; [ bew ];
|
|
platforms = with platforms; linux;
|
|
};
|
|
})
|