Unverified Commit 7f4b779c authored by Matthias Beyer's avatar Matthias Beyer Committed by GitHub
Browse files

Merge pull request #252753 from antonmosich/bemenu-update

bemenu: 0.6.15 -> 0.6.16
parents abf6f9b8 341202cd
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
@@ -5,15 +5,15 @@
, x11Support ? true, xorg
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "bemenu";
  version = "0.6.15";
  version = "0.6.16";

  src = fetchFromGitHub {
    owner = "Cloudef";
    repo = pname;
    rev = version;
    sha256 = "sha256-gdeNaqtxqxBtG9bkxozPE/DLQgLqCt1vh2A2WmgNn7w=";
    repo = finalAttrs.pname;
    rev = finalAttrs.version;
    sha256 = "sha256-K9a9BUodpKwvEOhnF2/TGo5zLm7F9RzqSCcWzuhKcWA=";
  };

  strictDeps = true;
@@ -45,6 +45,7 @@ stdenv.mkDerivation rec {
    description = "Dynamic menu library and client program inspired by dmenu";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ lheckemann ];
    mainProgram = "bemenu";
    platforms = with platforms; linux;
  };
}
})