emacsPackages.isearch-plus: use trivialBuild

This commit is contained in:
AndersonTorres 2021-09-15 00:59:04 -03:00
parent 8d70784b8b
commit 678858ee83

View File

@ -1,10 +1,10 @@
{ lib
, stdenv
, trivialBuild
, fetchFromGitHub
, emacs
}:
stdenv.mkDerivation {
trivialBuild {
pname = "isearch-plus";
version = "3434+unstable=2021-08-23";
@ -15,28 +15,11 @@ stdenv.mkDerivation {
hash = "sha256-kD+Fyps3fc5YK6ATU1nrkKHazGMYJnU2gRcpQZf6A1E=";
};
buildInputs = [
emacs
];
buildPhase = ''
runHook preBuild
emacs -L . --batch -f batch-byte-compile *.el
runHook postBuild
'';
installPhase = ''
runHook preInstall
install -d $out/share/emacs/site-lisp
install *.el *.elc $out/share/emacs/site-lisp
runHook postInstall
'';
meta = with lib; {
homepage = "https://www.emacswiki.org/emacs/IsearchPlus";
description = "Extensions to isearch";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ leungbk AndersonTorres ];
platforms = emacs.meta.platforms;
inherit (emacs.meta) platforms;
};
}