aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/misc/bemenu/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/applications/misc/bemenu/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/applications/misc/bemenu/default.nix52
1 files changed, 52 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/applications/misc/bemenu/default.nix b/infra/libkookie/nixpkgs/pkgs/applications/misc/bemenu/default.nix
new file mode 100644
index 000000000000..43362b0394eb
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/applications/misc/bemenu/default.nix
@@ -0,0 +1,52 @@
+{ stdenv, lib, fetchFromGitHub, cairo, libxkbcommon
+, pango, fribidi, harfbuzz, pcre, pkgconfig
+, ncursesSupport ? true, ncurses ? null
+, waylandSupport ? true, wayland ? null, wayland-protocols ? null
+, x11Support ? true, xlibs ? null, xorg ? null
+}:
+
+assert ncursesSupport -> ncurses != null;
+assert waylandSupport -> ! lib.elem null [wayland wayland-protocols];
+assert x11Support -> xlibs != null && xorg != null;
+
+stdenv.mkDerivation rec {
+ pname = "bemenu";
+ version = "0.5.0";
+
+ src = fetchFromGitHub {
+ owner = "Cloudef";
+ repo = pname;
+ rev = version;
+ sha256 = "1ifq5bk7782b9m6bl111x33fn38rpppdrww7hfavqia9a9gi2sl5";
+ };
+
+ nativeBuildInputs = [ pkgconfig pcre ];
+
+ makeFlags = ["PREFIX=$(out)"];
+
+ buildFlags = ["clients"]
+ ++ lib.optional ncursesSupport "curses"
+ ++ lib.optional waylandSupport "wayland"
+ ++ lib.optional x11Support "x11";
+
+ buildInputs = with stdenv.lib; [
+ cairo
+ fribidi
+ harfbuzz
+ libxkbcommon
+ pango
+ ] ++ optional ncursesSupport ncurses
+ ++ optionals waylandSupport [ wayland wayland-protocols ]
+ ++ optionals x11Support [
+ xlibs.libX11 xlibs.libXinerama xlibs.libXft
+ xorg.libXdmcp xorg.libpthreadstubs xorg.libxcb
+ ];
+
+ meta = with lib; {
+ homepage = "https://github.com/Cloudef/bemenu";
+ description = "Dynamic menu library and client program inspired by dmenu";
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ lheckemann ];
+ platforms = with platforms; linux;
+ };
+}