Merge pull request #328468 from linj-fork/pr/clean-isearch-prop

emacsPackages.isearch-prop: trivialBuild -> melpaBuild
This commit is contained in:
Lin Jian 2024-07-20 08:53:29 +08:00 committed by GitHub
commit bf8c6da286
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,10 +1,10 @@
{ lib
, fetchFromGitHub
, trivialBuild
, emacs
{
lib,
fetchFromGitHub,
melpaBuild,
}:
trivialBuild {
melpaBuild {
pname = "isearch-prop";
version = "0-unstable-2019-05-01";
@ -15,11 +15,10 @@ trivialBuild {
hash = "sha256-A1Kt4nm7iRV9J5yaLupwiNL5g7ddZvQs79dggmqZ7Rk=";
};
meta = with lib; {
meta = {
homepage = "https://www.emacswiki.org/emacs/IsearchPlus";
description = "Search text- or overlay-property contexts";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ leungbk ];
inherit (emacs.meta) platforms;
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ leungbk ];
};
}