emacsPackages.ebuild-mode: 1.65 -> 1.67

This commit is contained in:
Anderson Torres 2023-09-16 12:44:35 -03:00
parent 7d6f1282a4
commit f4b9b0d248

View File

@ -2,14 +2,15 @@
melpaBuild rec {
pname = "ebuild-mode";
version = "1.65";
version = "1.67";
src = fetchurl {
url = "https://dev.gentoo.org/~ulm/emacs/${pname}-${version}.tar.xz";
sha256 = "sha256-vJ+UlPMIuZ02da9R67wIq2dVaWElu/sYmWx2KgBQ9B8=";
url = "https://dev.gentoo.org/~ulm/emacs/ebuild-mode-${version}.tar.xz";
hash = "sha256-5qxHpu1BLtI8LFnL/sAoqmo80zeyElxIdFtAsfMefUE=";
};
commit = "not-used-but-has-to-be-set";
# not used but needs to be set; why?
commit = "e7b45096283ac8836f208babddfd1ea1c1d1d1d";
recipe = writeText "recipe" ''
(ebuild-mode
@ -17,9 +18,10 @@ melpaBuild rec {
:fetcher git)
'';
meta = with lib; {
meta = {
homepage = "https://gitweb.gentoo.org/proj/ebuild-mode.git/";
description = "Major modes for Gentoo package files";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ qyliss ];
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ qyliss ];
};
}