Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 17a9c0e9200b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 286450b33528
Choose a head ref
  • 2 commits
  • 1 file changed
  • 3 contributors

Commits on Jan 1, 2020

  1. bemenu: 0.1.0 -> 0.3.0

    Add option to enable backends.
    
    Co-Authored-By: Oleksii Filonenko <brightone@protonmail.com>
    NilsIrl and Br1ght0ne committed Jan 1, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b20fbee View commit details
  2. Bemenu: 0.1.0 -> 0.3.0 (#76676)

    Bemenu: 0.1.0 -> 0.3.0
    infinisil authored Jan 1, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    286450b View commit details
Showing with 11 additions and 5 deletions.
  1. +11 −5 pkgs/applications/misc/bemenu/default.nix
16 changes: 11 additions & 5 deletions pkgs/applications/misc/bemenu/default.nix
Original file line number Diff line number Diff line change
@@ -9,19 +9,25 @@ assert ncursesSupport -> ncurses != null;
assert waylandSupport -> wayland != null;
assert x11Support -> xlibs != null && xorg != null;

stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "bemenu";
version = "0.1.0";
version = "0.3.0";

src = fetchFromGitHub {
owner = "Cloudef";
repo = "bemenu";
rev = "33e540a2b04ce78f5c7ab4a60b899c67f586cc32";
sha256 = "11h55m9dx6ai12pqij52ydjm36dvrcc856pa834njihrp626pl4w";
repo = pname;
rev = version;
sha256 = "03k8wijdgj5nwmvgjhsrlh918n719789fhs4dqm23pd00rapxipk";
};

nativeBuildInputs = [ cmake pkgconfig pcre ];

cmakeFlags = [
"-DBEMENU_CURSES_RENDERER=${if ncursesSupport then "ON" else "OFF"}"
"-DBEMENU_WAYLAND_RENDERER=${if waylandSupport then "ON" else "OFF"}"
"-DBEMENU_X11_RENDERER=${if x11Support then "ON" else "OFF"}"
];

buildInputs = with stdenv.lib; [
cairo
fribidi