emacsPackages.isearch-prop: cosmetic rewriting

This commit is contained in:
AndersonTorres 2021-09-10 00:15:22 -03:00
parent 50262b516f
commit 4e6b7c3756
2 changed files with 16 additions and 8 deletions

View file

@ -1,17 +1,23 @@
{ stdenv, fetchFromGitHub, emacs, lib }: { lib
, stdenv
, fetchFromGitHub
, emacs
}:
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "isearch-prop"; pname = "isearch-prop";
version = "2019-05-01"; version = "0.0.0+unstable=2019-05-01";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "emacsmirror"; owner = "emacsmirror";
repo = "isearch-prop"; repo = "isearch-prop";
rev = "4a2765f835dd115d472142da05215c4c748809f4"; rev = "4a2765f835dd115d472142da05215c4c748809f4";
sha256 = "sha256-A1Kt4nm7iRV9J5yaLupwiNL5g7ddZvQs79dggmqZ7Rk="; hash = "sha256-A1Kt4nm7iRV9J5yaLupwiNL5g7ddZvQs79dggmqZ7Rk=";
}; };
buildInputs = [ emacs ]; buildInputs = [
emacs
];
buildPhase = '' buildPhase = ''
runHook preBuild runHook preBuild
@ -26,11 +32,11 @@ stdenv.mkDerivation {
runHook postInstall runHook postInstall
''; '';
meta = { meta = with lib; {
homepage = "https://www.emacswiki.org/emacs/IsearchPlus";
description = "Search text- or overlay-property contexts"; description = "Search text- or overlay-property contexts";
homepage = "https://www.emacswiki.org/emacs/download/isearch-prop.el"; license = licenses.gpl3Plus;
license = lib.licenses.gpl3Plus; maintainers = with maintainers; [ leungbk ];
maintainers = with lib.maintainers; [ leungbk ];
platforms = emacs.meta.platforms; platforms = emacs.meta.platforms;
}; };
} }

View file

@ -274,6 +274,8 @@
isearch-plus = callPackage ./isearch-plus { }; isearch-plus = callPackage ./isearch-plus { };
isearch-prop = callPackage ./isearch-prop { };
jam-mode = callPackage ./jam-mode { }; jam-mode = callPackage ./jam-mode { };
nano-theme = callPackage ./nano-theme { }; nano-theme = callPackage ./nano-theme { };