2021-11-02 23:50:32 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, fetchpatch, cairo, libxkbcommon
|
2021-01-17 02:09:27 +00:00
|
|
|
, pango, fribidi, harfbuzz, pcre, pkg-config
|
2019-05-01 23:04:38 +01:00
|
|
|
, ncursesSupport ? true, ncurses ? null
|
2020-05-11 11:18:43 +01:00
|
|
|
, waylandSupport ? true, wayland ? null, wayland-protocols ? null
|
2021-03-16 18:16:31 +00:00
|
|
|
, x11Support ? true, xorg ? null
|
2019-05-01 23:04:38 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert ncursesSupport -> ncurses != null;
|
2020-05-11 11:18:43 +01:00
|
|
|
assert waylandSupport -> ! lib.elem null [wayland wayland-protocols];
|
2021-03-16 18:16:31 +00:00
|
|
|
assert x11Support -> xorg != null;
|
2019-05-01 23:04:38 +01:00
|
|
|
|
2019-12-29 21:11:42 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-05-01 23:04:38 +01:00
|
|
|
pname = "bemenu";
|
2022-02-22 02:00:58 +00:00
|
|
|
version = "0.6.7";
|
2019-05-01 23:04:38 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Cloudef";
|
2019-12-29 21:11:42 +00:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2022-02-22 02:00:58 +00:00
|
|
|
sha256 = "sha256-cUkSXEB92I0UYTobQzUb2so1MUXJkryAqrmASx9RMF0=";
|
2019-05-01 23:04:38 +01:00
|
|
|
};
|
|
|
|
|
2021-01-17 02:09:27 +00:00
|
|
|
nativeBuildInputs = [ pkg-config pcre ];
|
2019-05-01 23:04:38 +01:00
|
|
|
|
2020-05-11 11:18:43 +01:00
|
|
|
makeFlags = ["PREFIX=$(out)"];
|
|
|
|
|
|
|
|
buildFlags = ["clients"]
|
|
|
|
++ lib.optional ncursesSupport "curses"
|
|
|
|
++ lib.optional waylandSupport "wayland"
|
|
|
|
++ lib.optional x11Support "x11";
|
2019-12-29 21:11:42 +00:00
|
|
|
|
2021-01-15 05:42:41 +00:00
|
|
|
buildInputs = with lib; [
|
2019-05-01 23:04:38 +01:00
|
|
|
cairo
|
|
|
|
fribidi
|
|
|
|
harfbuzz
|
|
|
|
libxkbcommon
|
|
|
|
pango
|
2020-05-11 11:18:43 +01:00
|
|
|
] ++ optional ncursesSupport ncurses
|
|
|
|
++ optionals waylandSupport [ wayland wayland-protocols ]
|
2019-05-01 23:04:38 +01:00
|
|
|
++ optionals x11Support [
|
2021-03-16 18:16:31 +00:00
|
|
|
xorg.libX11 xorg.libXinerama xorg.libXft
|
2019-05-01 23:04:38 +01:00
|
|
|
xorg.libXdmcp xorg.libpthreadstubs xorg.libxcb
|
|
|
|
];
|
|
|
|
|
2020-05-11 11:18:43 +01:00
|
|
|
meta = with lib; {
|
2019-05-01 23:04:38 +01:00
|
|
|
homepage = "https://github.com/Cloudef/bemenu";
|
|
|
|
description = "Dynamic menu library and client program inspired by dmenu";
|
|
|
|
license = licenses.gpl3Plus;
|
2020-05-11 16:39:26 +01:00
|
|
|
maintainers = with maintainers; [ lheckemann ];
|
2019-05-01 23:04:38 +01:00
|
|
|
platforms = with platforms; linux;
|
|
|
|
};
|
|
|
|
}
|