Unverified Commit d83fff64 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

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

pmenu: 3.1.0 -> 3.1.1
parents 73f4e920 50a7139f
Loading
Loading
Loading
Loading
+10 −10
Original line number Diff line number Diff line
@@ -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;
  };
}
})