Merge pull request #60661 from thiagokokada/add-bemenu-pkg
bemenu: init at 0.1.0
This commit is contained in:
commit
83a01ab93a
@ -4967,6 +4967,11 @@
|
|||||||
github = "ctheune";
|
github = "ctheune";
|
||||||
name = "Christian Theune";
|
name = "Christian Theune";
|
||||||
};
|
};
|
||||||
|
thiagokokada = {
|
||||||
|
email = "thiagokokada@gmail.com";
|
||||||
|
github = "thiagokokada";
|
||||||
|
name = "Thiago K. Okada";
|
||||||
|
};
|
||||||
ThomasMader = {
|
ThomasMader = {
|
||||||
email = "thomas.mader@gmail.com";
|
email = "thomas.mader@gmail.com";
|
||||||
github = "ThomasMader";
|
github = "ThomasMader";
|
||||||
|
45
pkgs/applications/misc/bemenu/default.nix
Normal file
45
pkgs/applications/misc/bemenu/default.nix
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, cairo, cmake, libxkbcommon
|
||||||
|
, pango, fribidi, harfbuzz, pcre, pkgconfig
|
||||||
|
, ncursesSupport ? true, ncurses ? null
|
||||||
|
, waylandSupport ? true, wayland ? null
|
||||||
|
, x11Support ? true, xlibs ? null, xorg ? null
|
||||||
|
}:
|
||||||
|
|
||||||
|
assert ncursesSupport -> ncurses != null;
|
||||||
|
assert waylandSupport -> wayland != null;
|
||||||
|
assert x11Support -> xlibs != null && xorg != null;
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "bemenu";
|
||||||
|
version = "0.1.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Cloudef";
|
||||||
|
repo = "bemenu";
|
||||||
|
rev = "33e540a2b04ce78f5c7ab4a60b899c67f586cc32";
|
||||||
|
sha256 = "11h55m9dx6ai12pqij52ydjm36dvrcc856pa834njihrp626pl4w";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake pkgconfig pcre ];
|
||||||
|
|
||||||
|
buildInputs = with stdenv.lib; [
|
||||||
|
cairo
|
||||||
|
fribidi
|
||||||
|
harfbuzz
|
||||||
|
libxkbcommon
|
||||||
|
pango
|
||||||
|
] ++ optionals ncursesSupport [ ncurses ]
|
||||||
|
++ optionals waylandSupport [ wayland ]
|
||||||
|
++ optionals x11Support [
|
||||||
|
xlibs.libX11 xlibs.libXinerama xlibs.libXft
|
||||||
|
xorg.libXdmcp xorg.libpthreadstubs xorg.libxcb
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/Cloudef/bemenu";
|
||||||
|
description = "Dynamic menu library and client program inspired by dmenu";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
maintainers = with maintainers; [ thiagokokada ];
|
||||||
|
platforms = with platforms; linux;
|
||||||
|
};
|
||||||
|
}
|
@ -24030,4 +24030,6 @@ in
|
|||||||
|
|
||||||
wasmtime = callPackage ../development/interpreters/wasmtime {};
|
wasmtime = callPackage ../development/interpreters/wasmtime {};
|
||||||
|
|
||||||
|
bemenu = callPackage ../applications/misc/bemenu { };
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user