mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-14 08:04:47 +00:00
emacsPackages.evil-markdown: use melpaBuild
This commit is contained in:
parent
aac589487f
commit
a12ddd7ffc
@ -1,12 +1,12 @@
|
||||
{ lib
|
||||
, trivialBuild
|
||||
, fetchFromGitHub
|
||||
, emacs
|
||||
, evil
|
||||
, markdown-mode
|
||||
{
|
||||
lib,
|
||||
evil,
|
||||
fetchFromGitHub,
|
||||
markdown-mode,
|
||||
melpaBuild,
|
||||
}:
|
||||
|
||||
trivialBuild rec {
|
||||
melpaBuild {
|
||||
pname = "evil-markdown";
|
||||
version = "0-unstable-2021-07-21";
|
||||
|
||||
@ -17,18 +17,15 @@ trivialBuild rec {
|
||||
hash = "sha256-HBBuZ1VWIn6kwK5CtGIvHM1+9eiNiKPH0GUsyvpUVN8=";
|
||||
};
|
||||
|
||||
buildInputs = propagatedUserEnvPkgs;
|
||||
|
||||
propagatedUserEnvPkgs = [
|
||||
packageRequires = [
|
||||
evil
|
||||
markdown-mode
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
meta = {
|
||||
homepage = "https://github.com/Somelauw/evil-markdown";
|
||||
description = "Integrates Emacs evil and markdown";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ leungbk ];
|
||||
inherit (emacs.meta) platforms;
|
||||
license = lib.licenses.gpl3Plus;
|
||||
maintainers = with lib.maintainers; [ leungbk ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user