nixpkgs/pkgs/applications/editors/emacs/elisp-packages/manual-packages/ebuild-mode/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
767 B
Nix
Raw Normal View History

2024-04-24 07:11:53 +00:00
{
lib,
melpaBuild,
fetchzip,
writeText,
}:
2021-06-28 13:53:14 +00:00
melpaBuild rec {
2021-06-28 13:53:14 +00:00
pname = "ebuild-mode";
2024-04-24 07:11:53 +00:00
version = "1.70";
2021-06-28 13:53:14 +00:00
2024-04-24 07:11:53 +00:00
src = fetchzip {
url = "https://gitweb.gentoo.org/proj/ebuild-mode.git/snapshot/ebuild-mode-${version}.tar.bz2";
hash = "sha256-dOm3xJMFLelwcImIwckeQHx1GqV9PB+I45QA9UT1nCM=";
2021-06-28 13:53:14 +00:00
};
# not used but needs to be set; why?
2024-04-24 07:11:53 +00:00
commit = "a643f177b58aa8869f2f24814e990320aa4f0f96";
recipe = writeText "recipe" ''
(ebuild-mode
2024-04-24 07:11:53 +00:00
:url "https://gitweb.gentoo.org/proj/ebuild-mode.git"
:fetcher git)
'';
meta = {
homepage = "https://gitweb.gentoo.org/proj/ebuild-mode.git/";
2021-06-28 13:53:14 +00:00
description = "Major modes for Gentoo package files";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ qyliss ];
2021-06-28 13:53:14 +00:00
};
}