Merge pull request #246075 from r-ryantm/auto-update/pmenu

pmenu: 3.1.0 -> 3.1.1
This commit is contained in:
Pol Dellaiera 2023-07-29 23:11:38 +02:00 committed by GitHub
commit d83fff64a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,15 +12,15 @@
, conf ? null
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "pmenu";
version = "3.1.0";
version = "3.1.1";
src = fetchFromGitHub {
owner = "phillbush";
repo = "pmenu";
rev = "v${version}";
sha256 = "sha256-bX1qiNUTxNFeS0hNc5dUqQLEgv22nHqJ0yW55CQlGw4=";
rev = "v${finalAttrs.version}";
hash = "sha256-7NI5az3LxOYEnsts8Qqi3gvO3dXpNjPDOTW2c5Y25Lc=";
};
buildInputs = [
@ -45,16 +45,16 @@ stdenv.mkDerivation rec {
"PREFIX=\${out}"
];
meta = with lib; {
meta = {
description = "A pie-menu tool";
homepage = "https://github.com/phillbush/pmenu";
license = lib.licenses.mit;
longDescription = ''
πmenu is a pie menu utility for X. πmenu receives a menu specification in
stdin, shows a menu for the user to select one of the options, and outputs
the option selected to stdout.
'';
homepage = "https://github.com/phillbush/pmenu";
license = licenses.mit;
maintainers = with maintainers; [ azahi ];
platforms = platforms.unix;
maintainers = [ lib.maintainers.azahi ];
platforms = lib.platforms.unix;
};
}
})