Merge pull request #252753 from antonmosich/bemenu-update

bemenu: 0.6.15 -> 0.6.16
This commit is contained in:
Matthias Beyer 2023-09-02 10:10:50 +02:00 committed by GitHub
commit 7f4b779c71
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
};
}
})